diff options
author | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2016-06-03 11:35:01 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2016-06-03 11:35:01 +0200 |
commit | 7ce297e5c8dae41645266311b972380774419735 (patch) | |
tree | f3a205e59c2493a11a272c82b562647bdde5de6a | |
parent | 9993014314d01407e4dfa1ecf8c58a31b2217ea2 (diff) | |
download | libuca-7ce297e5c8dae41645266311b972380774419735.tar.gz libuca-7ce297e5c8dae41645266311b972380774419735.tar.bz2 libuca-7ce297e5c8dae41645266311b972380774419735.tar.xz libuca-7ce297e5c8dae41645266311b972380774419735.zip |
Restructure building command line tools
-rw-r--r-- | bin/tools/CMakeLists.txt | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/bin/tools/CMakeLists.txt b/bin/tools/CMakeLists.txt index b310321..634b7a6 100644 --- a/bin/tools/CMakeLists.txt +++ b/bin/tools/CMakeLists.txt @@ -19,20 +19,12 @@ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.h.in include_directories(${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR}) -#{{{ gen-doc -add_executable(uca-gen-doc gen-doc.c) -target_link_libraries(uca-gen-doc ${libs}) -#}}} -#{{{ uca-grab -add_executable(uca-grab - grab.c common.c) -target_link_libraries(uca-grab ${libs}) -#}}} -#{{{ uca-benchmark -add_executable(uca-benchmark - benchmark.c common.c) -target_link_libraries(uca-benchmark ${libs}) -#}}} +set(BINARIES "benchmark" "gen-doc" "grab") + +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 RUNTIME DESTINATION ${UCA_BINDIR} |