diff options
| author | Max Drosdo.www <g1ran1q@gmail.com> | 2020-06-16 15:22:46 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-16 14:22:46 +0200 |
| commit | 60e813df6b7dfe599266cf36ddd52ba204917267 (patch) | |
| tree | 4b37b55a6233e0786cd8937f96207f4c70179f3b | |
| parent | cb5694607d8640b1ad54f7bdaf5f17482a97bc85 (diff) | |
removed legacy cmake libsdir entry (#24813)
| -rw-r--r-- | cmake/platform/unix/settings.cmake | 6 | ||||
| -rw-r--r-- | cmake/showoptions.cmake | 1 | ||||
| -rw-r--r-- | doc/UnixInstall.txt | 1 |
3 files changed, 0 insertions, 8 deletions
diff --git a/cmake/platform/unix/settings.cmake b/cmake/platform/unix/settings.cmake index 0d38c6886a5..47e10d3cda1 100644 --- a/cmake/platform/unix/settings.cmake +++ b/cmake/platform/unix/settings.cmake @@ -4,12 +4,6 @@ if( NOT CONF_DIR ) message(STATUS "UNIX: Using default configuration directory") endif() -# set default library directory -if( NOT LIBSDIR ) - set(LIBSDIR ${CMAKE_INSTALL_PREFIX}/lib) - message(STATUS "UNIX: Using default library directory") -endif() - # configure uninstaller configure_file( "${CMAKE_SOURCE_DIR}/cmake/platform/cmake_uninstall.in.cmake" diff --git a/cmake/showoptions.cmake b/cmake/showoptions.cmake index d53792ef484..eab421e0b12 100644 --- a/cmake/showoptions.cmake +++ b/cmake/showoptions.cmake @@ -10,7 +10,6 @@ message("") message("* Install core to : ${CMAKE_INSTALL_PREFIX}") if( UNIX ) - message("* Install libraries to : ${LIBSDIR}") message("* Install configs to : ${CONF_DIR}") endif() message("") diff --git a/doc/UnixInstall.txt b/doc/UnixInstall.txt index 5334c9cbee6..33762417017 100644 --- a/doc/UnixInstall.txt +++ b/doc/UnixInstall.txt @@ -42,7 +42,6 @@ CMakeLists.txt in the main folder and take a look at some of the flags like CMAKE_INSTALL_PREFIX Set installation directory NOJEM Do not build with jemalloc (advanced users only) CONF_DIR Set path as default configuration directory - LIBSDIR Set path as default library directory CMAKE_C_FLAGS Set C_FLAGS for compile (advanced users only) CMAKE_CXX_FLAGS Set CXX_FLAGS for compile (advanced users only) CMAKE_BUILD_TYPE Set build type - the supported modes are: |
