From: Casey Bodley Date: Tue, 14 Mar 2023 17:02:51 +0000 (-0400) Subject: cmake/rgw: dbstore no longer includes src/fmt/include X-Git-Tag: v19.0.0~1431^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=66fe2f0524ad7f26e09d575938751ccfb9940362;p=ceph.git cmake/rgw: dbstore no longer includes src/fmt/include if we're using system fmt, we shouldn't mix the submodule's headers. src/CMakeLists.txt already adds global include_directories() for the correct fmt headers Signed-off-by: Casey Bodley --- diff --git a/src/rgw/driver/dbstore/CMakeLists.txt b/src/rgw/driver/dbstore/CMakeLists.txt index 0d34d32970b4e..a3aca7a64e4cc 100644 --- a/src/rgw/driver/dbstore/CMakeLists.txt +++ b/src/rgw/driver/dbstore/CMakeLists.txt @@ -26,7 +26,6 @@ set(dbstore_mgr_srcs add_library(dbstore_lib ${dbstore_srcs}) target_include_directories(dbstore_lib - PUBLIC "${CMAKE_SOURCE_DIR}/src/fmt/include" PUBLIC "${CMAKE_SOURCE_DIR}/src/rgw" PUBLIC "${CMAKE_SOURCE_DIR}/src/rgw/store/rados" PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}")