stamdStatic Markdown Page Generator |
git clone git://git.dimitrijedobrota.com/stamd.git |
Log | Files | Refs | README | LICENSE | HACKING | CONTRIBUTING | CODE_OF_CONDUCT | BUILDING |
CMakeLists.txt (517B)
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(stamdTests LANGUAGES CXX) 5 6 # ---- Tests ---- 7 8 add_executable(stamd_test source/stamd_test.cpp) 9 target_link_libraries(stamd_test PRIVATE stamd_lib) 10 target_compile_features(stamd_test PRIVATE cxx_std_20) 11 12 add_test(NAME stamd_test COMMAND stamd_test) 13 14 # ---- End-of-file commands ---- 15 16 add_folders(Test)