Files
CMake/Tests/RunCMake/install/TARGETS-RUNTIME_DEPENDENCIES-macos-two-bundle.cmake
2021-06-04 08:52:02 -04: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
)