startgit

Static 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)


0 # Parent project does not export its library target, so this CML implicitly 1 # depends on being added from it, i.e. the testing is done only from the build 2 # tree and is not feasible from an install location 3 4 project(startgitTests LANGUAGES CXX) 5 6 # ---- Tests ---- 7 8 add_executable(startgit_test source/startgit_test.cpp) 9 target_link_libraries(startgit_test PRIVATE startgit_lib) 10 target_compile_features(startgit_test PRIVATE cxx_std_20) 11 12 add_test(NAME startgit_test COMMAND startgit_test) 13 14 # ---- End-of-file commands ---- 15 16 add_folders(Test)