A lightweight, work‑in‑progress file explorer built with Qt6 and C++.
Qt 6C++ 20or newerCMake>= 3.14
qt6-base-devqt6-declarative-dev
# Install dependencies or do it manually
bash scripts/install_deps.sh
# Add git hooks
bash scripts/setup-git-hooks.sh# build
bash build.sh
# build and run
bash build.sh --run
# run binary after build
./build/QtFiles
# run tests
bash build.sh --test # can be combined with the --run flag
./build/run_tests
# build clean, run test and run
bash build.sh --clean --test --run