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
393 B
11 lines
393 B
8 years ago
|
install(FILES CMakeLists.txt DESTINATION foo COMPONENT applications)
|
||
|
install(FILES CMakeLists.txt DESTINATION bar COMPONENT headers)
|
||
|
install(FILES CMakeLists.txt DESTINATION bas COMPONENT libs)
|
||
|
|
||
|
if(RunCMake_SUBTEST_SUFFIX STREQUAL "invalid")
|
||
|
set(CPACK_RPM_MAIN_COMPONENT "")
|
||
|
else()
|
||
|
set(CPACK_RPM_MAIN_COMPONENT "applications")
|
||
|
set(CPACK_RPM_APPLICATIONS_FILE_NAME "RPM-DEFAULT")
|
||
|
endif()
|