From ebb7f32482945b7201743d70b40324b8c98ff4e2 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Thu, 21 Mar 2019 12:07:10 +0800 Subject: [PATCH] cmake: build fmt submodule if libfmt is not found the recent seastar dropped fmt submodule, so we need to build from our own fmt submodule. Signed-off-by: Kefu Chai --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 1b1f19d464e..39fbc1c336a 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -282,7 +282,7 @@ if(WITH_SEASTAR) find_package(fmt 5.2.1 QUIET) if(NOT fmt_FOUND) message(STATUS "Could not find fmt, will build it") - add_subdirectory(seastar/fmt) + add_subdirectory(fmt) endif() find_package(c-ares 1.13.0 QUIET) if(NOT c-ares_FOUND) -- 2.39.5