]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
CMakeLists.txt: fix Seastar expected dirs
authorMatan Breizman <mbreizma@redhat.com>
Sun, 4 Feb 2024 10:34:56 +0000 (10:34 +0000)
committerMatan Breizman <mbreizma@redhat.com>
Tue, 6 Feb 2024 15:49:08 +0000 (15:49 +0000)
```
  # 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 <mbreizma@redhat.com>
src/CMakeLists.txt

index afa2442d5709de7f635a897cacb8635d20963ac6..d266eb72598b013b4ecee7c3d46e696167a7c076 100644 (file)
@@ -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()