Skip to content

Commit

Permalink
Respect CMAKE_INSTALL_LIBDIR when determining library install paths.
Browse files Browse the repository at this point in the history
Patch by Lubos Dolezel!
  • Loading branch information
theraven committed Jun 27, 2013
1 parent 60a3605 commit 2f720fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ endif ()
set(GNUSTEP_INSTALL_TYPE ${DEFAULT_INSTALL_TYPE} CACHE STRING
"GNUstep installation type. Options are NONE, SYSTEM, NETWORK or LOCAL.")
if (${GNUSTEP_INSTALL_TYPE} STREQUAL "NONE")
SET(LIB_INSTALL_PATH "lib" CACHE STRING
SET(LIB_INSTALL_PATH "${CMAKE_INSTALL_LIBDIR}" CACHE STRING
"Subdirectory of the root prefix where libraries are installed.")
SET(HEADER_INSTALL_PATH "include")
else ()
Expand Down

0 comments on commit 2f720fb

Please sign in to comment.