diff options
author | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2013-04-10 10:48:14 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2013-04-10 10:48:14 +0200 |
commit | 5df96007494558caf68b5fc9a07ce8815a3d8104 (patch) | |
tree | eb029565dc2352c19c419166e5f944031abcd367 /tools | |
parent | f4fbaa3e7c5f4f1d4d1ca4374859e6fc600ebc82 (diff) | |
download | libuca-5df96007494558caf68b5fc9a07ce8815a3d8104.tar.gz libuca-5df96007494558caf68b5fc9a07ce8815a3d8104.tar.bz2 libuca-5df96007494558caf68b5fc9a07ce8815a3d8104.tar.xz libuca-5df96007494558caf68b5fc9a07ce8815a3d8104.zip |
Install grab as uca-grab
Diffstat (limited to 'tools')
-rw-r--r-- | tools/CMakeLists.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index 9a50779..b16f018 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -32,8 +32,11 @@ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.h.in add_executable(gen-doc gen-doc.c) target_link_libraries(gen-doc ${libs}) -add_executable(grab grab.c ring-buffer.c) -target_link_libraries(grab ${libs}) +add_executable(uca-grab grab.c ring-buffer.c) +target_link_libraries(uca-grab ${libs}) add_executable(benchmark benchmark.c) target_link_libraries(benchmark ${libs}) + +install(TARGETS uca-grab + RUNTIME DESTINATION bin) |