summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTimo Dritschler <timo.dritschler@kit.edu>2014-11-21 14:11:27 +0100
committerTimo Dritschler <timo.dritschler@kit.edu>2014-11-21 14:15:01 +0100
commita0351b722ae0bdbc5ed44eeab21daa230362f6e8 (patch)
treed78e0f678cf4ebc075be5f19a5402ab6e96218a9 /src
parent65c2326592b7b1496c468459689904843e443b26 (diff)
downloadkiro-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 'src')
-rw-r--r--src/CMakeLists.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 3fe62a0..c8150c4 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -5,8 +5,9 @@ set_target_properties(kiro PROPERTIES
)
target_link_libraries(kiro m rdmacm ibverbs pthread)
-install(FILES kiro-rdma.h kiro-trb.h kiro-client.h kiro-server.h DESTINATION ${HEADER_INSTALL_DIR})
+install(FILES kiro-rdma.h kiro-trb.h kiro-client.h kiro-server.h DESTINATION
+ ${KIRO_INCLUDEDIR}/kiro)
install(TARGETS kiro
- LIBRARY DESTINATION ${LIB_INSTALL_DIR}
+ LIBRARY DESTINATION ${KIRO_LIBDIR}
)