diff options
Diffstat (limited to 'bin/tools/CMakeLists.txt')
-rw-r--r-- | bin/tools/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/tools/CMakeLists.txt b/bin/tools/CMakeLists.txt index 634b7a6..977af28 100644 --- a/bin/tools/CMakeLists.txt +++ b/bin/tools/CMakeLists.txt @@ -19,14 +19,14 @@ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.h.in include_directories(${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR}) -set(BINARIES "benchmark" "gen-doc" "grab") +set(BINARIES "benchmark" "gen-doc" "grab" "info") foreach (BINARY ${BINARIES}) add_executable(uca-${BINARY} ${BINARY}.c common.c) target_link_libraries(uca-${BINARY} ${libs}) endforeach () -install(TARGETS uca-benchmark uca-grab uca-gen-doc +install(TARGETS uca-benchmark uca-grab uca-gen-doc uca-info RUNTIME DESTINATION ${UCA_BINDIR} COMPONENT executables) #}}} |