From: Kefu Chai Date: Thu, 5 Aug 2021 13:52:50 +0000 (+0800) Subject: cmake: link bundled fmt statically X-Git-Tag: v17.1.0~1188^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F42681%2Fhead;p=ceph.git cmake: link bundled fmt statically instead of building the bundled fmt library as shared library, built static library. otherwise we'd have to link against libfmt.so. Signed-off-by: Kefu Chai --- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index d190c481afea..a192a79affbd 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -328,7 +328,11 @@ if(fmt_FOUND) include_directories(SYSTEM "${fmt_INCLUDE_DIR}") else() message(STATUS "Could not find fmt, will build it") + set(old_BUILD_SHARED_LIBS ${BUILD_SHARED_LIBS}) + set(BUILD_SHARED_LIBS FALSE) add_subdirectory(fmt) + set(BUILD_SHARED_LIBS ${old_BUILD_SHARED_LIBS}) + unset(old_BUILD_SHARED_LIBS) include_directories(SYSTEM "${CMAKE_SOURCE_DIR}/src/fmt/include") endif()