Skip to content

Mizux/gakkou

Repository files navigation

Github-CI: Build Status Build Status Build Status Build Status

Introduction

| Codemap | Build | Test | Install | CI | License |

A simple app using CMake, C++ and Qt5.

Codemap

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.

Build Project

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

Test Project

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

Install Project

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.

License

Apache 2. See the LICENSE file for details.