mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-03 21:00:01 -05:00
6 lines
225 B
CMake
6 lines
225 B
CMake
enable_language(C)
|
|
add_executable(myexe main.c)
|
|
install(TARGETS myexe DESTINATION bin-all)
|
|
install(TARGETS myexe DESTINATION bin-uns EXCLUDE_FROM_ALL)
|
|
install(TARGETS myexe DESTINATION bin-exc EXCLUDE_FROM_ALL COMPONENT exc)
|