diff options
author | Florian Walch <florian@fwalch.com> | 2015-04-20 12:26:39 +0300 |
---|---|---|
committer | Florian Walch <florian@fwalch.com> | 2015-04-29 22:26:55 +0300 |
commit | 5b5d3531518ec5d3e900d3e197174990162ca3ff (patch) | |
tree | ce6153c6c5170d1e97bda20bba898c04c7ef7cbd | |
parent | 9a08aa80f7e7ee322e1075547187c1d7ac7064c5 (diff) | |
download | rneovim-5b5d3531518ec5d3e900d3e197174990162ca3ff.tar.gz rneovim-5b5d3531518ec5d3e900d3e197174990162ca3ff.tar.bz2 rneovim-5b5d3531518ec5d3e900d3e197174990162ca3ff.zip |
CMake: Don't request static linking for dependencies.
For built-in dependencies, shared libraries are removed and static
linking is always used.
For systemwide dependencies, static linking should not be used.
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index cf5d63a8d9..fe58ca6dc6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -190,15 +190,12 @@ include_directories(SYSTEM ${MSGPACK_INCLUDE_DIRS}) find_package(LuaJit REQUIRED) include_directories(SYSTEM ${LUAJIT_INCLUDE_DIRS}) -option(UNIBILIUM_USE_STATIC "Use static unibilium" ON) find_package(Unibilium REQUIRED) include_directories(SYSTEM ${UNIBILIUM_INCLUDE_DIRS}) -option(LIBTERMKEY_USE_STATIC "Use static libtermkey" ON) find_package(LibTermkey REQUIRED) include_directories(SYSTEM ${LIBTERMKEY_INCLUDE_DIRS}) -option(LIBVTERM_USE_STATIC "Use static libvterm" ON) find_package(LibVterm REQUIRED) include_directories(SYSTEM ${LIBVTERM_INCLUDE_DIRS}) @@ -215,7 +212,6 @@ else() endif() if(USE_JEMALLOC) - option(JEMALLOC_USE_STATIC "Use static jemalloc" ON) find_package(JeMalloc) if(JEMALLOC_FOUND) message(STATUS "Using jemalloc instead of libc allocator") |