2021-09-14 00:13:48 +02:00
|
|
|
add_library(simpleobj OBJECT ../empty.c "$<$<CONFIG:Debug>:../empty_dbg.c>" "$<$<CONFIG:Release>:../empty_rel.c>")
|
2020-08-30 11:54:41 +02:00
|
|
|
add_library(simpleshared SHARED ../simplelib.c)
|
2021-09-14 00:13:48 +02:00
|
|
|
|
|
|
|
add_executable(simpleexe ../main.c $<TARGET_OBJECTS:simpleobj>)
|
2020-08-30 11:54:41 +02:00
|
|
|
target_link_libraries(simpleexe PRIVATE simpleshared)
|
2021-09-14 00:13:48 +02:00
|
|
|
|
|
|
|
add_executable(simpleexe2 ../main.c)
|
|
|
|
target_link_libraries(simpleexe2 PRIVATE simpleshared $<TARGET_OBJECTS:simpleobj>)
|