diff options
| author | Josh Blum <josh@joshknows.com> | 2011-04-01 12:02:43 -0700 | 
|---|---|---|
| committer | Josh Blum <josh@joshknows.com> | 2011-04-01 12:02:43 -0700 | 
| commit | 3a1f6c51429cfc195c08f4e327e4e83bf997f911 (patch) | |
| tree | 03fbe11985b06cbd7f1af7fe5e49352768ce3dd1 | |
| parent | 6e61e3e495d716e9a82415cbbd83e2133a181a25 (diff) | |
| download | uhd-3a1f6c51429cfc195c08f4e327e4e83bf997f911.tar.gz uhd-3a1f6c51429cfc195c08f4e327e4e83bf997f911.tar.bz2 uhd-3a1f6c51429cfc195c08f4e327e4e83bf997f911.zip | |
uhd: added images and readme installer component
| -rw-r--r-- | host/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | host/Modules/UHDPackage.cmake | 17 | 
2 files changed, 18 insertions, 3 deletions
| diff --git a/host/CMakeLists.txt b/host/CMakeLists.txt index 290ffdc7d..3808481bf 100644 --- a/host/CMakeLists.txt +++ b/host/CMakeLists.txt @@ -173,7 +173,7 @@ INSTALL(FILES      ${CMAKE_CURRENT_SOURCE_DIR}/LICENSE.txt      ${CMAKE_CURRENT_SOURCE_DIR}/AUTHORS.txt      DESTINATION ${PKG_DOC_DIR} -    COMPONENT libraries +    COMPONENT readme  )  ######################################################################## @@ -215,7 +215,7 @@ ADD_SUBDIRECTORY(usrp_e_utils)  IF(DEFINED UHD_IMAGES_DIR AND EXISTS "${UHD_IMAGES_DIR}")      FILE(GLOB _image_files "${UHD_IMAGES_DIR}/*.*")      MESSAGE(STATUS "Using images: ${_image_files}") -    INSTALL(FILES ${_image_files} DESTINATION ${PKG_DATA_DIR}/images) +    INSTALL(FILES ${_image_files} DESTINATION ${PKG_DATA_DIR}/images COMPONENT images)  ENDIF(DEFINED UHD_IMAGES_DIR AND EXISTS "${UHD_IMAGES_DIR}")  ######################################################################## diff --git a/host/Modules/UHDPackage.cmake b/host/Modules/UHDPackage.cmake index ef1a82c9a..7fee51741 100644 --- a/host/Modules/UHDPackage.cmake +++ b/host/Modules/UHDPackage.cmake @@ -90,6 +90,7 @@ SET(CPACK_COMPONENT_EXAMPLES_GROUP       "Runtime")  SET(CPACK_COMPONENT_TESTS_GROUP          "Runtime")  SET(CPACK_COMPONENT_MANUAL_GROUP         "Documentation")  SET(CPACK_COMPONENT_DOXYGEN_GROUP        "Documentation") +SET(CPACK_COMPONENT_README_GROUP         "Documentation")  SET(CPACK_COMPONENT_LIBRARIES_DISPLAY_NAME      "Libraries")  SET(CPACK_COMPONENT_HEADERS_DISPLAY_NAME        "C++ Headers") @@ -98,12 +99,26 @@ SET(CPACK_COMPONENT_EXAMPLES_DISPLAY_NAME       "Examples")  SET(CPACK_COMPONENT_TESTS_DISPLAY_NAME          "Unit Tests")  SET(CPACK_COMPONENT_MANUAL_DISPLAY_NAME         "Manual")  SET(CPACK_COMPONENT_DOXYGEN_DISPLAY_NAME        "Doxygen") +SET(CPACK_COMPONENT_README_DISPLAY_NAME         "Readme") +SET(CPACK_COMPONENT_IMAGES_DISPLAY_NAME         "Images") + +SET(CPACK_COMPONENT_LIBRARIES_DESCRIPTION     "Dynamic link library") +SET(CPACK_COMPONENT_HEADERS_DESCRIPTION       "C++ development headers") +SET(CPACK_COMPONENT_UTILITIES_DESCRIPTION     "Utility executables and python scripts") +SET(CPACK_COMPONENT_EXAMPLES_DESCRIPTION      "Example executables") +SET(CPACK_COMPONENT_TESTS_DESCRIPTION         "Unit test executables") +SET(CPACK_COMPONENT_MANUAL_DESCRIPTION        "Manual/application notes (rst and html)") +SET(CPACK_COMPONENT_DOXYGEN_DESCRIPTION       "API documentation (html)") +SET(CPACK_COMPONENT_README_DESCRIPTION        "Readme files (txt)") +SET(CPACK_COMPONENT_IMAGES_DESCRIPTION        "FPGA and firmware images") + +SET(CPACK_COMPONENT_README_REQUIRED TRUE)  SET(CPACK_COMPONENT_UTILITIES_DEPENDS libraries)  SET(CPACK_COMPONENT_EXAMPLES_DEPENDS libraries)  SET(CPACK_COMPONENT_TESTS_DEPENDS libraries) -SET(CPACK_COMPONENTS_ALL libraries headers utilities examples tests manual doxygen) +SET(CPACK_COMPONENTS_ALL libraries headers utilities examples tests manual doxygen readme images)  ########################################################################  # Setup CPack Debian | 
