diff options
author | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2013-10-29 09:05:51 +0100 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2013-10-29 09:05:51 +0100 |
commit | 137f03b9a34fb39e5321524ab11fa31276458476 (patch) | |
tree | 83ea6e2b2228d1e99a37a0e510faaa13130ef849 /bin/tools | |
parent | 85a0f33711fd4467b9027da85ab9e09e406398d4 (diff) | |
download | libuca-137f03b9a34fb39e5321524ab11fa31276458476.tar.gz libuca-137f03b9a34fb39e5321524ab11fa31276458476.tar.bz2 libuca-137f03b9a34fb39e5321524ab11fa31276458476.tar.xz libuca-137f03b9a34fb39e5321524ab11fa31276458476.zip |
Use ConfigurePaths to get installation paths
The advantage is twofold: 1) we have a clear separation between setting up the
paths and actually using them, 2) the interface is very likely as configure
scripts and makes integration into build system a bit easier.
Diffstat (limited to 'bin/tools')
-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 285b2d7..964b1f9 100644 --- a/bin/tools/CMakeLists.txt +++ b/bin/tools/CMakeLists.txt @@ -32,8 +32,8 @@ target_link_libraries(uca-grab ringbuffer ${libs}) add_executable(uca-benchmark benchmark.c common.c) target_link_libraries(uca-benchmark ${libs}) +#}}} install(TARGETS uca-benchmark uca-grab uca-gen-doc - RUNTIME DESTINATION bin) -#}}} + RUNTIME DESTINATION ${UCA_BINDIR}) #}}} |