]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/opentelemetry-cpp/tools/vcpkg/ports/mstch/do-not-force-release.patch
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / jaegertracing / opentelemetry-cpp / tools / vcpkg / ports / mstch / do-not-force-release.patch
1 diff --git a/CMakeLists.txt b/CMakeLists.txt
2 index 8d8e0c7..4304ad7 100644
3 --- a/CMakeLists.txt
4 +++ b/CMakeLists.txt
5 @@ -5,17 +5,17 @@ option(WITH_UNIT_TESTS "enable building unit test executable" OFF)
6 option(WITH_BENCHMARK "enable building benchmark executable" OFF)
7
8 set(CMAKE_INCLUDE_CURRENT_DIR ON)
9 -set(CMAKE_INCLUDE_CURRENT_DIR_IN_INTERFACE ON)
10 -set(CMAKE_BUILD_TYPE Release)
11
12 set(mstch_VERSION 1.0.1)
13
14 if(NOT MSVC)
15 - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -Wextra -O3")
16 + set(CMAKE_CXX_STANDARD 11)
17 endif()
18
19 add_subdirectory(src)
20
21 +target_include_directories(mstch PUBLIC $<INSTALL_INTERFACE:include>)
22 +
23 if(WITH_UNIT_TESTS)
24 enable_testing()
25 add_subdirectory(vendor/headerize)