cmake/Tests/RunCMake/install/TARGETS-RUNTIME_DEPENDENCIES-macos-two-bundle.cmake
2021-09-14 00:13:48 +02:00

11 lines
214 B
CMake

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
)