diff options
author | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2017-10-11 09:53:52 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2017-10-11 09:53:52 +0200 |
commit | e2c150f53b6d6dc35e520212f1e710a39f75eca1 (patch) | |
tree | d109dfba5d98fe4d9051f80aa8c72aae62b7c13b /bin/tools/CMakeLists.txt | |
parent | 34d31e7974665f6f78bfd4af476f7d053c53f750 (diff) | |
download | uca-e2c150f53b6d6dc35e520212f1e710a39f75eca1.tar.gz uca-e2c150f53b6d6dc35e520212f1e710a39f75eca1.tar.bz2 uca-e2c150f53b6d6dc35e520212f1e710a39f75eca1.tar.xz uca-e2c150f53b6d6dc35e520212f1e710a39f75eca1.zip |
grab: show progress during acquisition
Diffstat (limited to 'bin/tools/CMakeLists.txt')
-rw-r--r-- | bin/tools/CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/tools/CMakeLists.txt b/bin/tools/CMakeLists.txt index 6eb99eb..3f0044b 100644 --- a/bin/tools/CMakeLists.txt +++ b/bin/tools/CMakeLists.txt @@ -19,13 +19,16 @@ 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" "info") +set(BINARIES "benchmark" "gen-doc" "info") foreach (BINARY ${BINARIES}) add_executable(uca-${BINARY} ${BINARY}.c common.c) target_link_libraries(uca-${BINARY} ${libs}) endforeach () +add_executable(uca-grab grab.c common.c) +target_link_libraries(uca-grab ${libs} m) + install(TARGETS uca-benchmark uca-grab uca-gen-doc uca-info RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} COMPONENT executables) |