diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2010-09-20 21:02:26 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2010-09-20 21:02:26 (GMT) |
commit | 7c7b4e3deb555c2d2fc3a6a029549a014f29d50e (patch) | |
tree | 3f5918dbc0f2bdbac88d0e2604730285dbe699cc /tools/lib | |
parent | 1d8cd1619ac982396ef1aa35793a97e89027f3da (diff) | |
download | hdf5-7c7b4e3deb555c2d2fc3a6a029549a014f29d50e.zip hdf5-7c7b4e3deb555c2d2fc3a6a029549a014f29d50e.tar.gz hdf5-7c7b4e3deb555c2d2fc3a6a029549a014f29d50e.tar.bz2 |
[svn-r19438] Correct use of lib, include, bin in INSTALL commands to use proper variables.
Tested: local linux
Diffstat (limited to 'tools/lib')
-rw-r--r-- | tools/lib/CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/lib/CMakeLists.txt b/tools/lib/CMakeLists.txt index 05fd607..879e30e 100644 --- a/tools/lib/CMakeLists.txt +++ b/tools/lib/CMakeLists.txt @@ -55,7 +55,7 @@ INSTALL ( FILES ${H5_TOOLS_LIB_HDRS} DESTINATION - include/tools + ${HDF5_INSTALL_INCLUDE_DIR}/tools COMPONENT toolsheaders ) @@ -84,8 +84,8 @@ IF (HDF5_EXPORTED_TARGETS) ${HDF5_TOOLS_LIB_TARGET} EXPORT ${HDF5_EXPORTED_TARGETS} - LIBRARY DESTINATION lib/tools COMPONENT toolslibraries - ARCHIVE DESTINATION lib/tools COMPONENT toolslibraries - RUNTIME DESTINATION bin/tools COMPONENT toolslibraries + LIBRARY DESTINATION ${HDF5_INSTALL_LIB_DIR}/tools COMPONENT toolslibraries + ARCHIVE DESTINATION ${HDF5_INSTALL_LIB_DIR}/tools COMPONENT toolslibraries + RUNTIME DESTINATION ${HDF5_INSTALL_BIN_DIR}/tools COMPONENT toolslibraries ) ENDIF (HDF5_EXPORTED_TARGETS) |