startgitStatic page generator for git repositories |
git clone git://git.dimitrijedobrota.com/startgit.git |
Log | Files | Refs | README | LICENSE | HACKING | CONTRIBUTING | CODE_OF_CONDUCT | BUILDING | |
CMakeLists.txt (541B)
1 # Parent project does not export its library target, so this CML implicitly 2 # depends on being added from it, i.e. the testing is done only from the build 3 # tree and is not feasible from an install location 4 5 project(startgitTests LANGUAGES CXX) 6 7 # ---- Tests ---- 8 9 add_executable(startgit_test source/startgit_test.cpp) 10 target_link_libraries(startgit_test PRIVATE startgit_lib) 11 target_compile_features(startgit_test PRIVATE cxx_std_20) 12 13 add_test(NAME startgit_test COMMAND startgit_test) 14 15 # ---- End-of-file commands ---- 16 17 add_folders(Test)