Skip to content

Latest commit

 

History

History
48 lines (36 loc) · 1.68 KB

README.md

File metadata and controls

48 lines (36 loc) · 1.68 KB

tiny-drive-prof

Simple C++ program with ImGui-based interface, that shows you proportions of files in a specified directory. Nothing excess. Infinity search. Filesystem events reaction. Enjoy.

kk

Features

  • Simple and responsive UI.
  • Multithreaded search. Uses std::thread::hardware_concurrency() to determine number of threads.
  • Real-time filesystem events handling.
  • For devs: Hot reload based on cr.h.

Installation

  • Windows 7 or higher is required (Windows 10 is recommended)
  • Download prebuilt version.
  • Extract an archive and run tiny-drive-prof.exe.

Building from Sources

Prerequisites

Before your start make sure that your system meets the conditions:

Configuring and Building

  1. Clone the repo, including submodules
    git clone https://github.com/Pospelove/tiny-drive-prof.git
    cd tiny-drive-prof
    git submodule init
    git submodule update
  2. Make a build directory (used for project files, cache, artifacts, etc)
    mkdir build
  3. Generate project files with CMake. Dependencies would be installed automatically
    cd build
    cmake ..
  4. Open build/tiny-drive-prof.sln with Visual Studio, then Build -> Build Solution.