]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/opentelemetry-cpp/tools/vcpkg/ports/graphqlparser/static-compile-fix.patch
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / jaegertracing / opentelemetry-cpp / tools / vcpkg / ports / graphqlparser / static-compile-fix.patch
1 diff --git a/CMakeLists.txt b/CMakeLists.txt
2 index 56741c2..313308a 100644
3 --- a/CMakeLists.txt
4 +++ b/CMakeLists.txt
5 @@ -142,8 +142,11 @@ if (UNIX)
6 elseif(WIN32)
7 INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/graphqlparser.lib
8 DESTINATION lib)
9 + # do not install pdb when static compilation.
10 + if (BUILD_SHARED_LIBS)
11 INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/graphqlparser.pdb
12 DESTINATION bin)
13 + endif()
14 endif()
15
16 IF (test)