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.
9 lines
403 B
9 lines
403 B
add_library(simpleobj OBJECT ../empty.c "$<$<CONFIG:Debug>:../empty_dbg.c>" "$<$<CONFIG:Release>:../empty_rel.c>")
|
|
add_library(simpleshared SHARED ../simplelib.c)
|
|
|
|
add_executable(simpleexe ../main.c $<TARGET_OBJECTS:simpleobj>)
|
|
target_link_libraries(simpleexe PRIVATE simpleshared)
|
|
|
|
add_executable(simpleexe2 ../main.c)
|
|
target_link_libraries(simpleexe2 PRIVATE simpleshared $<TARGET_OBJECTS:simpleobj>)
|