diff options
author | Timo Dritschler <timo.dritschler@kit.edu> | 2014-11-21 14:11:27 +0100 |
---|---|---|
committer | Timo Dritschler <timo.dritschler@kit.edu> | 2014-11-21 14:15:01 +0100 |
commit | a0351b722ae0bdbc5ed44eeab21daa230362f6e8 (patch) | |
tree | d78e0f678cf4ebc075be5f19a5402ab6e96218a9 /test/CMakeLists.txt | |
parent | 65c2326592b7b1496c468459689904843e443b26 (diff) | |
download | kiro-a0351b722ae0bdbc5ed44eeab21daa230362f6e8.tar.gz kiro-a0351b722ae0bdbc5ed44eeab21daa230362f6e8.tar.bz2 kiro-a0351b722ae0bdbc5ed44eeab21daa230362f6e8.tar.xz kiro-a0351b722ae0bdbc5ed44eeab21daa230362f6e8.zip |
Fix #5: Changed build process to use ConfigurePaths instead of static paths
Diffstat (limited to 'test/CMakeLists.txt')
-rw-r--r-- | test/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index a3f7777..35b0531 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -7,9 +7,9 @@ pkg_check_modules(SDL sdl>=1.2.15) if (SDL_FOUND) add_executable(kiro-client-sdl test-client.c) target_link_libraries(kiro-client-sdl kiro SDL m gobject-2.0 glib-2.0) - install(TARGETS kiro-client-sdl RUNTIME DESTINATION bin) + install(TARGETS kiro-client-sdl RUNTIME DESTINATION ${KIRO_BINDIR}) else () - message("SDL not found: Won't build KIRO test-client-sdl binary.") + message("SDL not found: Won't build kiro-client-sdl binary.") endif () add_executable(kiro-test-latency test-client-latency.c) @@ -20,4 +20,4 @@ add_executable(kiro-server test-server.c) target_link_libraries(kiro-server kiro gobject-2.0 glib-2.0) install(TARGETS kiro-test-bandwidth kiro-test-latency kiro-server - RUNTIME DESTINATION bin) + RUNTIME DESTINATION ${KIRO_BINDIR}) |