A simple app using CMake, C++ and Qt5.
Thus the project layout is as follow:
-
CMakeLists.txt Top-level for CMake based build.
-
cmake Subsidiary CMake files.
-
ci Root directory for continuous integration.
-
src Source directory of the Application.
To build the C++ project, as usual:
cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release
cmake --build build --config Release --target all -v
note: replace all
by ALL_BUILD
for non makefile generators
To test the C++ project, as usual:
cmake --build build --config Release --target test -v
note: replace test
by RUN_TESTS
for non makefile generators
To install the C++ project, as usual:
cmake --build build --config Release --target install -v
note: replace install
by INSTALL
for non makefile/xcode generators.
Apache 2. See the LICENSE file for details.