]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/opentelemetry-cpp/tools/vcpkg/ports/stxxl/fix-include-dir.patch
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / jaegertracing / opentelemetry-cpp / tools / vcpkg / ports / stxxl / fix-include-dir.patch
1 diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt
2 index 06f9e50a..281e1f04 100644
3 --- a/lib/CMakeLists.txt
4 +++ b/lib/CMakeLists.txt
5 @@ -94,6 +94,8 @@ if(BUILD_SHARED_LIBS)
6 add_library(stxxl SHARED ${LIBSTXXL_SOURCES})
7 set_target_properties(stxxl PROPERTIES OUTPUT_NAME "${STXXL_LIBNAME}")
8 set_target_properties(stxxl PROPERTIES VERSION "${STXXL_VERSION_STRING}")
9 + target_include_directories(stxxl PUBLIC $<INSTALL_INTERFACE:include>)
10 +
11 install(TARGETS stxxl
12 EXPORT stxxl-targets
13 ARCHIVE DESTINATION ${INSTALL_LIB_DIR}
14 @@ -104,6 +106,8 @@ if(BUILD_SHARED_LIBS)
15 add_library(stxxl_static STATIC ${LIBSTXXL_SOURCES})
16 set_target_properties(stxxl_static PROPERTIES OUTPUT_NAME "${STXXL_LIBNAME}")
17 set_target_properties(stxxl_static PROPERTIES VERSION "${STXXL_VERSION_STRING}")
18 + target_include_directories(stxxl_static PUBLIC $<INSTALL_INTERFACE:include>)
19 +
20 install(TARGETS stxxl_static
21 EXPORT stxxl-targets
22 ARCHIVE DESTINATION ${INSTALL_LIB_DIR})
23 @@ -122,6 +126,8 @@ else()
24 add_library(stxxl STATIC ${LIBSTXXL_SOURCES})
25 set_target_properties(stxxl PROPERTIES OUTPUT_NAME "${STXXL_LIBNAME}")
26 set_target_properties(stxxl PROPERTIES VERSION "${STXXL_VERSION_STRING}")
27 + target_include_directories(stxxl PUBLIC $<INSTALL_INTERFACE:include>)
28 +
29 install(TARGETS stxxl
30 EXPORT stxxl-targets
31 ARCHIVE DESTINATION ${INSTALL_LIB_DIR}