aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorkcat <[email protected]>2016-09-14 09:48:03 -0700
committerGitHub <[email protected]>2016-09-14 09:48:03 -0700
commit2f1f7f4c6aaf54f9361865d508d82cdf027368bf (patch)
tree2232a33feb48c05f447bc3091463dce12f52c8b8 /utils
parentbb48a7e520bedb8f5bc54c0322b5922279b10ffd (diff)
parent3481cf6fbae3f49e9f6e60d7610459dad319e5d1 (diff)
Merge pull request #63 from adrianbroher/gnuinstalldir
Use GNUInstallDirs to place the build artifacts properly
Diffstat (limited to 'utils')
-rw-r--r--utils/alsoft-config/CMakeLists.txt6
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()