From ebbf7f0665487b9e0507f1550cd469e56895addc Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Thu, 5 Aug 2021 21:52:50 +0800 Subject: [PATCH] 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 --- src/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) 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() -- 2.47.3