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.
14 lines
389 B
14 lines
389 B
enable_language(C)
|
|
if(CMake_TEST_Swift)
|
|
enable_language(Swift)
|
|
string(APPEND CMAKE_Swift_FLAGS " -DSWIFTFLAG")
|
|
add_executable(swift_inherit_test dummy_main.swift)
|
|
endif()
|
|
|
|
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")
|