1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
| add_executable(
| standard_license_test
| standard-license_test.cpp
| )
|
| target_link_libraries(
| standard_license_test
| license_generator_lib
| license++_static
| )
|
| SET_TARGET_PROPERTIES(standard_license_test PROPERTIES LINK_SEARCH_START_STATIC ON)
| ADD_TEST(standard_license_test ${EXECUTABLE_OUTPUT_PATH}/standard_license_test)
|
|