You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
enable_language(C)
|
|
|
|
add_compile_definitions(TEST_INHERITTEST)
|
|
string(APPEND CMAKE_C_FLAGS " -DTESTFLAG=\\\"TEST_INHERITTEST\\\"")
|
|
|
|
add_executable(inherit_test main.c)
|
|
|
|
target_link_libraries(inherit_test PRIVATE "TEST_INHERITTEST")
|