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.
|
add_library(SubDirC STATIC SubDirC.c)
|
|
|
|
add_library(SubDirC1 INTERFACE)
|
|
target_compile_definitions(SubDirC1 INTERFACE DEF_SubDirC1)
|
|
|
|
add_library(SubDirC2 INTERFACE)
|
|
target_compile_definitions(SubDirC2 INTERFACE DEF_SubDirC2)
|
|
|
|
target_link_libraries(SubDirC PRIVATE SubDirC1)
|