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
185 B
9 lines
185 B
5 years ago
|
enable_language(C)
|
||
|
|
||
|
add_executable(exe MACOSX_BUNDLE main.c)
|
||
|
add_library(lib1 SHARED obj1.c)
|
||
|
set_property(TARGET lib1 PROPERTY FRAMEWORK ON)
|
||
|
|
||
|
install(TARGETS exe)
|
||
|
install(TARGETS lib1)
|