diff options
author | Marcel Metz <[email protected]> | 2016-09-06 21:35:34 +0200 |
---|---|---|
committer | Marcel Metz <[email protected]> | 2016-09-06 21:43:01 +0200 |
commit | 6387933f8b7511b7b8078245511fc99525d8d0fd (patch) | |
tree | e66fde7dfc428d51f629392d615a8ff46783c7f3 /utils/alsoft-config/CMakeLists.txt | |
parent | a758cc82433ad4fd47aeac7e626dff4bd1fa739f (diff) |
Use GNUInstallDirs to place the build artifacts properly
CMake 2.8.5 added the GNUInstallDirs module, which provides various
variables following the CMAKE_INSTALL_*DIR pattern to allow users a more
flexible installation setup and to provide sensible defaults while
respecting distribution specific install locations like lib64 for RPM
based linux distributions or debian multiarch tuples.
Diffstat (limited to 'utils/alsoft-config/CMakeLists.txt')
-rw-r--r-- | utils/alsoft-config/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/alsoft-config/CMakeLists.txt b/utils/alsoft-config/CMakeLists.txt index 99d68ad5..578273a5 100644 --- a/utils/alsoft-config/CMakeLists.txt +++ b/utils/alsoft-config/CMakeLists.txt @@ -23,8 +23,8 @@ if(QT4_FOUND) set_target_properties(alsoft-config PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${OpenAL_BINARY_DIR}) install(TARGETS alsoft-config - RUNTIME DESTINATION bin - LIBRARY DESTINATION "lib${LIB_SUFFIX}" - ARCHIVE DESTINATION "lib${LIB_SUFFIX}" + RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} + LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} + ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} ) endif() |