From 901ddebe01b3323d213d1a6b7fd1ce29746b48cc Mon Sep 17 00:00:00 2001 From: Micke Prag Date: Fri, 7 Oct 2011 09:37:20 +0000 Subject: [PATCH] =?UTF-8?q?Rename=20variable=20LIBRARY=5FDIR=20to=20LIB=5F?= =?UTF-8?q?INSTALL=5FDIR.=20This=20seems=20to=20match=20different=20distri?= =?UTF-8?q?butions=20better.=20Thanks=20to=20Per=20=C3=98yvind=20Karlsen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- telldus-core/client/CMakeLists.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/telldus-core/client/CMakeLists.txt b/telldus-core/client/CMakeLists.txt index 1d5d3b1f..5f328c63 100644 --- a/telldus-core/client/CMakeLists.txt +++ b/telldus-core/client/CMakeLists.txt @@ -115,14 +115,14 @@ SET_TARGET_PROPERTIES(${telldus-core_TARGET} PROPERTIES ) SIGN(${telldus-core_TARGET}) -IF (NOT LIBRARY_DIR) - SET(LIBRARY_DIR "lib") -ENDIF (NOT LIBRARY_DIR) +IF (NOT LIB_INSTALL_DIR) + SET(LIB_INSTALL_DIR "lib") +ENDIF (NOT LIB_INSTALL_DIR) IF (UNIX) INSTALL(TARGETS ${telldus-core_TARGET} - LIBRARY DESTINATION ${LIBRARY_DIR} - ARCHIVE DESTINATION ${LIBRARY_DIR} + LIBRARY DESTINATION ${LIB_INSTALL_DIR} + ARCHIVE DESTINATION ${LIB_INSTALL_DIR} FRAMEWORK DESTINATION "/Library/Frameworks" PUBLIC_HEADER DESTINATION include )