diff options
author | Chris Robinson <[email protected]> | 2008-06-06 18:39:18 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2008-06-06 18:39:18 -0700 |
commit | 55e2f294ac5c4b65b739f0d2b6bf43f7b8bf9da7 (patch) | |
tree | b0286ac989a9437a5b4dd2bfaba58a177664f8b9 /CMakeLists.txt | |
parent | 2a4b467f08b084b8fe2ac8013b061d5a7f89d840 (diff) |
Allow for overriding the default lib destination with LIB_INSTALL_DIR
So 64-bit builds can be optionally redirected to lib64
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 5eb5c5c4..810f61e7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,6 +31,9 @@ SET(LIB_MAJOR_VERSION "1") SET(LIB_MINOR_VERSION "4") SET(LIB_BUILD_VERSION "272") SET(LIB_VERSION "${LIB_MAJOR_VERSION}.${LIB_MINOR_VERSION}.${LIB_BUILD_VERSION}") +IF(NOT DEFINED LIB_INSTALL_DIR) + SET(LIB_INSTALL_DIR "lib") +ENDIF(NOT DEFINED LIB_INSTALL_DIR) CHECK_TYPE_SIZE("long" SIZEOF_LONG) @@ -309,8 +312,8 @@ TARGET_LINK_LIBRARIES(${LIBNAME} ${EXTRA_LIBS}) # Add an install target here INSTALL(TARGETS ${LIBNAME} RUNTIME DESTINATION bin - LIBRARY DESTINATION lib - ARCHIVE DESTINATION lib + LIBRARY DESTINATION ${LIB_INSTALL_DIR} + ARCHIVE DESTINATION ${LIB_INSTALL_DIR} ) INSTALL(FILES include/AL/al.h include/AL/alc.h @@ -323,8 +326,8 @@ IF(EXAMPLES) TARGET_LINK_LIBRARIES(openal-info ${LIBNAME}) INSTALL(TARGETS openal-info RUNTIME DESTINATION bin - LIBRARY DESTINATION lib - ARCHIVE DESTINATION lib + LIBRARY DESTINATION ${LIB_INSTALL_DIR} + ARCHIVE DESTINATION ${LIB_INSTALL_DIR} ) ENDIF() |