Skip to content

Commit

Permalink
-- cmake: add utils cpack component
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Kraemer <[email protected]>
  • Loading branch information
VJanKraemer committed Dec 5, 2023
1 parent ab71b1f commit a823ffd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ set(CPACK_ARCHIVE_DOCS_FILE_NAME "${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}
set(CPACK_COMPONENT_UNSPECIFIED_DISABLED ON)
set(CPACK_COMPONENTS_ALL "bin")
list(APPEND CPACK_COMPONENTS_ALL "dev")
list(APPEND CPACK_COMPONENTS_ALL "utils")


if(SILKIT_BUILD_DOCS)
Expand All @@ -298,3 +299,4 @@ cpack_add_component(docs DISPLAY_NAME "SIL Kit Documentation")
cpack_add_component(source DISPLAY_NAME "SIL Kit Sources")
cpack_add_component(bin DISPLAY_NAME "SIL Kit Binaries")
cpack_add_component(dev DISPLAY_NAME "SIL Kit Headers")
cpack_add_component(utils DISPLAY_NAME "SIL Kit Utility Tools")
2 changes: 1 addition & 1 deletion Utilities/SilKitMonitor/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@ endif()

install(TARGETS sil-kit-monitor
RUNTIME DESTINATION ${INSTALL_BIN_DIR}
COMPONENT bin
COMPONENT utils
)
2 changes: 1 addition & 1 deletion Utilities/SilKitRegistry/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -76,5 +76,5 @@ endif()

install(TARGETS sil-kit-registry
RUNTIME DESTINATION ${INSTALL_BIN_DIR}
COMPONENT bin
COMPONENT utils
)
2 changes: 1 addition & 1 deletion Utilities/SilKitSystemController/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@ endif()

install(TARGETS sil-kit-system-controller
RUNTIME DESTINATION ${INSTALL_BIN_DIR}
COMPONENT bin
COMPONENT utils
)

0 comments on commit a823ffd

Please sign in to comment.