diff options
-rw-r--r-- | parameter/CMakeLists.txt | 2 | ||||
-rw-r--r-- | remote-process/CMakeLists.txt | 2 | ||||
-rw-r--r-- | remote-processor/CMakeLists.txt | 2 | ||||
-rw-r--r-- | test/test-platform/CMakeLists.txt | 2 | ||||
-rw-r--r-- | xmlserializer/CMakeLists.txt | 2 |
5 files changed, 10 insertions, 0 deletions
diff --git a/parameter/CMakeLists.txt b/parameter/CMakeLists.txt index 9d097da..73d6a93 100644 --- a/parameter/CMakeLists.txt +++ b/parameter/CMakeLists.txt @@ -174,3 +174,5 @@ include_directories("${PROJECT_SOURCE_DIR}/utility") include_directories("${PROJECT_SOURCE_DIR}/remote-processor") target_link_libraries(parameter xmlserializer pfw_utility) + +install(TARGETS parameter LIBRARY DESTINATION lib) diff --git a/remote-process/CMakeLists.txt b/remote-process/CMakeLists.txt index 7f8a5ee..80fd177 100644 --- a/remote-process/CMakeLists.txt +++ b/remote-process/CMakeLists.txt @@ -6,3 +6,5 @@ include_directories("${PROJECT_SOURCE_DIR}/remote-processor") include_directories("${PROJECT_SOURCE_DIR}/utility") target_link_libraries(remote-process remote-processor pfw_utility) + +install(TARGETS remote-process RUNTIME DESTINATION bin) diff --git a/remote-processor/CMakeLists.txt b/remote-processor/CMakeLists.txt index 5cecf98..60b6ff2 100644 --- a/remote-processor/CMakeLists.txt +++ b/remote-processor/CMakeLists.txt @@ -12,3 +12,5 @@ include(FindThreads) # TODO: use the "prefer pthread" option; check if we are using pthread (what to # do else ?) target_link_libraries(remote-processor ${CMAKE_THREAD_LIBS_INIT}) + +install(TARGETS remote-processor LIBRARY DESTINATION lib) diff --git a/test/test-platform/CMakeLists.txt b/test/test-platform/CMakeLists.txt index 17979d0..afc7dc5 100644 --- a/test/test-platform/CMakeLists.txt +++ b/test/test-platform/CMakeLists.txt @@ -10,3 +10,5 @@ include_directories("${PROJECT_SOURCE_DIR}/remote-processor") include_directories("${PROJECT_SOURCE_DIR}/utility") target_link_libraries(test-platform parameter remote-processor) + +install(TARGETS test-platform RUNTIME DESTINATION bin) diff --git a/xmlserializer/CMakeLists.txt b/xmlserializer/CMakeLists.txt index 052ca2e..c4358b1 100644 --- a/xmlserializer/CMakeLists.txt +++ b/xmlserializer/CMakeLists.txt @@ -14,3 +14,5 @@ include(FindLibXml2) # TODO: check for the "XInclude" feature in libxml2 include_directories(${LIBXML2_INCLUDE_DIR}) target_link_libraries(xmlserializer ${LIBXML2_LIBRARIES}) + +install(TARGETS xmlserializer LIBRARY DESTINATION lib) |