diff options
Diffstat (limited to 'bin')
-rw-r--r-- | bin/gui/CMakeLists.txt | 6 | ||||
-rw-r--r-- | bin/tools/CMakeLists.txt | 3 |
2 files changed, 6 insertions, 3 deletions
diff --git a/bin/gui/CMakeLists.txt b/bin/gui/CMakeLists.txt index a75b5b1..8ee80ed 100644 --- a/bin/gui/CMakeLists.txt +++ b/bin/gui/CMakeLists.txt @@ -35,9 +35,11 @@ if (GTK2_FOUND) ${GTHREAD2_LIBRARIES}) install(TARGETS ${BINARY} - RUNTIME DESTINATION ${UCA_BINDIR}) + RUNTIME DESTINATION ${UCA_BINDIR} + COMPONENT executables) install(FILES control.glade - DESTINATION ${UCA_GLADEDIR}) + DESTINATION ${UCA_GLADEDIR} + COMPONENT executables) endif() #}}} diff --git a/bin/tools/CMakeLists.txt b/bin/tools/CMakeLists.txt index 964b1f9..4070523 100644 --- a/bin/tools/CMakeLists.txt +++ b/bin/tools/CMakeLists.txt @@ -35,5 +35,6 @@ target_link_libraries(uca-benchmark ${libs}) #}}} install(TARGETS uca-benchmark uca-grab uca-gen-doc - RUNTIME DESTINATION ${UCA_BINDIR}) + RUNTIME DESTINATION ${UCA_BINDIR} + COMPONENT executables) #}}} |