summaryrefslogtreecommitdiff
path: root/tools
diff options
authorMarco Trevisan (Treviño) <mail@3v1n0.net>2016-08-31 17:05:58 +0200
committerMarco Trevisan (Treviño) <mail@3v1n0.net>2016-08-31 17:05:58 +0200
commita54a1472e08b902d7dc7e0f54f265d9bf4f54119 (patch)
treec8d24ed51c9c576154569ffadd8c877d6935ceb9 /tools
parentbc6914483406cded2df685497fbab8b7ebeb58be (diff)
CMake: use UNITY_LIBDIR in a more shared way
(bzr r4177.4.1)
Diffstat (limited to 'tools')
-rw-r--r--tools/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt
index 58e575a8d..adc58083f 100644
--- a/tools/CMakeLists.txt
+++ b/tools/CMakeLists.txt
@@ -1,7 +1,7 @@
#
# Some unity tools
#
-install(FILES makebootchart.py PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE DESTINATION ${CMAKE_INSTALL_LIBDIR}/unity)
+install(FILES makebootchart.py PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE DESTINATION ${UNITY_INSTALL_LIBDIR})
configure_file (${CMAKE_CURRENT_SOURCE_DIR}/unity.cmake ${CMAKE_BINARY_DIR}/bin/unity)
install(FILES ${CMAKE_BINARY_DIR}/bin/unity PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ
@@ -27,4 +27,4 @@ link_directories(${LIB_PATHS})
add_executable(unity-active-plugins-safety-check unity_active_plugins_safety_check.cpp)
target_link_libraries(unity-active-plugins-safety-check ${LIBS})
-install(TARGETS unity-active-plugins-safety-check DESTINATION ${CMAKE_INSTALL_LIBDIR}/unity/)
+install(TARGETS unity-active-plugins-safety-check DESTINATION ${UNITY_INSTALL_LIBDIR})