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.
11 lines
214 B
11 lines
214 B
3 years ago
|
enable_language(C)
|
||
|
|
||
|
add_executable(exe1 MACOSX_BUNDLE main.c)
|
||
|
add_executable(exe2 MACOSX_BUNDLE main.c)
|
||
|
|
||
|
install(TARGETS exe1 exe2
|
||
|
RUNTIME_DEPENDENCIES
|
||
|
BUNDLE DESTINATION bundles
|
||
|
FRAMEWORK DESTINATION fw
|
||
|
)
|