From: Matan Breizman Date: Sun, 4 Feb 2024 10:34:56 +0000 (+0000) Subject: CMakeLists.txt: fix Seastar expected dirs X-Git-Tag: v19.3.0~71^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=42ead863ecab39bbb6b01ef5ea9cf4b3b4e7cef6;p=ceph.git CMakeLists.txt: fix Seastar expected dirs ``` # create the directory so cmake won't complain when looking at the imported # target: Seastar exports this directory created at build-time ``` Signed-off-by: Matan Breizman --- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index afa2442d5709..d266eb72598b 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -392,6 +392,7 @@ if(WITH_SEASTAR) # create the directory so cmake won't complain when looking at the imported # target: Seastar exports this directory created at build-time file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/seastar/gen/include") + file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/seastar/gen/src") add_subdirectory(crimson) endif()