diff options
author | 2017-04-29 18:58:51 +0200 | |
---|---|---|
committer | 2017-04-29 17:42:42 +0000 | |
commit | cf992f97d8e421417a8e8c26e6bc706473edcde0 (patch) | |
tree | a428714a1927e2c43b54db4eebef2f59fa0d9f2c /libccnx-transport-rta/ccnx/transport | |
parent | 45cbd1b86e6365c50e75da122040b5d57127ebe5 (diff) |
Adding support for dev and doc packages
Change-Id: I42f128364cfa1b7e19f2af2c8dc6d849e0ac6cc3
Signed-off-by: Mauro Sardara <msardara+fdio@cisco.com>
Diffstat (limited to 'libccnx-transport-rta/ccnx/transport')
-rw-r--r-- | libccnx-transport-rta/ccnx/transport/CMakeLists.txt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libccnx-transport-rta/ccnx/transport/CMakeLists.txt b/libccnx-transport-rta/ccnx/transport/CMakeLists.txt index 076b637a..119826cb 100644 --- a/libccnx-transport-rta/ccnx/transport/CMakeLists.txt +++ b/libccnx-transport-rta/ccnx/transport/CMakeLists.txt @@ -196,16 +196,16 @@ set(libccnx_transport_rta_libraries ) foreach(lib ${libccnx_transport_rta_libraries}) - install(TARGETS ${lib} LIBRARY DESTINATION lib ARCHIVE DESTINATION lib) + install(TARGETS ${lib} COMPONENT library LIBRARY DESTINATION lib ARCHIVE DESTINATION lib) set_property(TARGET ${lib} PROPERTY C_STANDARD 99) endforeach() -install(FILES ${BASE_HDRS} DESTINATION include/ccnx/transport ) -install(FILES ${COMMON_HDRS} DESTINATION include/ccnx/transport/common ) -install(FILES ${TEST_TOOLS_HDRS} DESTINATION include/ccnx/transport/test_tools ) -install(FILES ${RTA_CORE_HDRS} DESTINATION include/ccnx/transport/transport_rta ) -install(FILES ${RTA_CONFIG_HDRS} DESTINATION include/ccnx/transport/transport_rta/config ) -install(FILES ${RTA_COMMANDS_HDRS} DESTINATION include/ccnx/transport/transport_rta/commands ) +install(FILES ${BASE_HDRS} DESTINATION include/ccnx/transport COMPONENT headers) +install(FILES ${COMMON_HDRS} DESTINATION include/ccnx/transport/common COMPONENT headers) +install(FILES ${TEST_TOOLS_HDRS} DESTINATION include/ccnx/transport/test_tools COMPONENT headers) +install(FILES ${RTA_CORE_HDRS} DESTINATION include/ccnx/transport/transport_rta COMPONENT headers) +install(FILES ${RTA_CONFIG_HDRS} DESTINATION include/ccnx/transport/transport_rta/config COMPONENT headers) +install(FILES ${RTA_COMMANDS_HDRS} DESTINATION include/ccnx/transport/transport_rta/commands COMPONENT headers) add_subdirectory(common/test) add_subdirectory(transport_rta/test) |