From 54216c4c28b81d33bd5c8b6e3b5a6083b53093fd Mon Sep 17 00:00:00 2001 From: ConfuSomu Date: Sun, 25 Dec 2022 01:58:03 -0500 Subject: Initial commit This project can also serve as a base for other Qt projects, as necessary. --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 README.md (limited to 'README.md') diff --git a/README.md b/README.md new file mode 100644 index 0000000..3cae597 --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +## Building + +To build, please have CMake and the Qt library installed. Then use: + +``` +cmake -B build -DCMAKE_BUILD_TYPE=Debug # Initially +cmake --build build -j$(nproc --all) --target all # All; after modifying ui files +cmake --build build -j$(nproc --all) --target clean # To clean +``` -- cgit v1.2.3-54-g00ecf