aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/opencensus-cpp/fix-install.patch
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/opencensus-cpp/fix-install.patch
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/opencensus-cpp/fix-install.patch')
-rw-r--r--vcpkg/ports/opencensus-cpp/fix-install.patch228
1 files changed, 228 insertions, 0 deletions
diff --git a/vcpkg/ports/opencensus-cpp/fix-install.patch b/vcpkg/ports/opencensus-cpp/fix-install.patch
new file mode 100644
index 0000000..bca8ea1
--- /dev/null
+++ b/vcpkg/ports/opencensus-cpp/fix-install.patch
@@ -0,0 +1,228 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 0ecec53..45d994c 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -38,7 +38,13 @@ enable_testing()
+
+ list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
+
+-include(OpenCensusDeps)
++find_package(absl CONFIG REQUIRED)
++find_package(prometheus-cpp CONFIG REQUIRED)
++
++if(BUILD_TESTING)
++ find_package(GTest CONFIG REQUIRED)
++ find_package(benchmark CONFIG REQUIRED)
++endif()
+
+ include(OpenCensusHelpers)
+
+diff --git a/cmake/OpenCensusHelpers.cmake b/cmake/OpenCensusHelpers.cmake
+index 8fdfe96..6667085 100644
+--- a/cmake/OpenCensusHelpers.cmake
++++ b/cmake/OpenCensusHelpers.cmake
+@@ -35,8 +35,15 @@ function(opencensus_test NAME SRC)
+ set(_NAME "opencensus_${NAME}")
+ add_executable(${_NAME} ${SRC})
+ prepend_opencensus(DEPS "${ARGN}")
+- target_link_libraries(${_NAME} "${DEPS}" gmock gtest_main)
++ target_link_libraries(${_NAME} "${DEPS}" GTest::gmock GTest::gtest_main)
+ add_test(NAME ${_NAME} COMMAND ${_NAME})
++
++ install(
++ TARGETS ${_NAME}
++ RUNTIME DESTINATION tools
++ LIBRARY DESTINATION lib
++ ARCHIVE DESTINATION lib
++ )
+ endif()
+ endfunction()
+
+@@ -49,7 +56,14 @@ function(opencensus_benchmark NAME SRC)
+ set(_NAME "opencensus_${NAME}")
+ add_executable(${_NAME} ${SRC})
+ prepend_opencensus(DEPS "${ARGN}")
+- target_link_libraries(${_NAME} "${DEPS}" benchmark)
++ target_link_libraries(${_NAME} "${DEPS}" benchmark::benchmark)
++
++ install(
++ TARGETS ${_NAME}
++ RUNTIME DESTINATION tools
++ LIBRARY DESTINATION lib
++ ARCHIVE DESTINATION lib
++ )
+ endif()
+ endfunction()
+
+@@ -71,6 +85,12 @@ function(opencensus_lib NAME)
+ if(ARG_PUBLIC)
+ add_library(${PROJECT_NAME}::${NAME} ALIAS ${_NAME})
+ endif()
++ install(
++ TARGETS ${_NAME}
++ RUNTIME DESTINATION bin
++ LIBRARY DESTINATION lib
++ ARCHIVE DESTINATION lib
++ )
+ endfunction()
+
+ # Helper function for fuzzing. Usage:
+@@ -83,5 +103,12 @@ function(opencensus_fuzzer NAME SRC)
+ prepend_opencensus(DEPS "${ARGN}")
+ target_link_libraries(${_NAME} "${DEPS}" ${FUZZER})
+ target_compile_options(${_NAME} PRIVATE ${FUZZER})
++
++ install(
++ TARGETS ${_NAME}
++ RUNTIME DESTINATION tools
++ LIBRARY DESTINATION lib
++ ARCHIVE DESTINATION lib
++ )
+ endif()
+ endfunction()
+diff --git a/examples/helloworld/CMakeLists.txt b/examples/helloworld/CMakeLists.txt
+index 86cc1f4..cbbcb29 100644
+--- a/examples/helloworld/CMakeLists.txt
++++ b/examples/helloworld/CMakeLists.txt
+@@ -23,3 +23,10 @@ target_link_libraries(
+ opencensus-cpp::stats
+ opencensus-cpp::trace
+ Threads::Threads)
++
++install(
++ TARGETS opencensus_examples_helloworld
++ RUNTIME DESTINATION tools
++ LIBRARY DESTINATION lib
++ ARCHIVE DESTINATION lib
++)
+diff --git a/opencensus/common/internal/CMakeLists.txt b/opencensus/common/internal/CMakeLists.txt
+index a9dbd87..810a8c8 100644
+--- a/opencensus/common/internal/CMakeLists.txt
++++ b/opencensus/common/internal/CMakeLists.txt
+@@ -23,6 +23,12 @@ opencensus_lib(
+ absl::synchronization
+ absl::time)
+
++file(GLOB HDRS ${CMAKE_CURRENT_LIST_DIR}/*.h)
++install(FILES ${HDRS} DESTINATION include/opencensus-cpp/opencensus/common/internal)
++
++file(GLOB HDRS ${CMAKE_CURRENT_LIST_DIR}/grpc/*.h)
++install(FILES ${HDRS} DESTINATION include/opencensus-cpp/opencensus/common/internal/grpc)
++
+ opencensus_lib(common_stats_object DEPS absl::time)
+
+ # Define NOMINMAX to fix build errors when compiling with MSVC.
+diff --git a/opencensus/context/CMakeLists.txt b/opencensus/context/CMakeLists.txt
+index 149958c..2474a66 100644
+--- a/opencensus/context/CMakeLists.txt
++++ b/opencensus/context/CMakeLists.txt
+@@ -22,6 +22,9 @@ opencensus_lib(
+ tags
+ trace)
+
++file(GLOB HDRS ${CMAKE_CURRENT_LIST_DIR}/*.h)
++install(FILES ${HDRS} DESTINATION include/opencensus-cpp/opencensus/context)
++
+ opencensus_test(
+ context_context_test
+ internal/context_test.cc
+diff --git a/opencensus/exporters/stats/prometheus/CMakeLists.txt b/opencensus/exporters/stats/prometheus/CMakeLists.txt
+index 01038cc..0ad712b 100644
+--- a/opencensus/exporters/stats/prometheus/CMakeLists.txt
++++ b/opencensus/exporters/stats/prometheus/CMakeLists.txt
+@@ -21,6 +21,12 @@ opencensus_lib(
+ exporters_stats_prometheus_utils
+ stats)
+
++file(GLOB HDRS ${CMAKE_CURRENT_LIST_DIR}/*.h)
++install(FILES ${HDRS} DESTINATION include/opencensus-cpp/opencensus/exporters/stats/prometheus)
++
++file(GLOB HDRS ${CMAKE_CURRENT_LIST_DIR}/internal/*.h)
++install(FILES ${HDRS} DESTINATION include/opencensus-cpp/opencensus/exporters/stats/prometheus/internal)
++
+ opencensus_lib(
+ exporters_stats_prometheus_utils
+ SRCS
+diff --git a/opencensus/exporters/stats/stdout/CMakeLists.txt b/opencensus/exporters/stats/stdout/CMakeLists.txt
+index 5278e65..2930817 100644
+--- a/opencensus/exporters/stats/stdout/CMakeLists.txt
++++ b/opencensus/exporters/stats/stdout/CMakeLists.txt
+@@ -23,5 +23,8 @@ opencensus_lib(
+ absl::strings
+ absl::time)
+
++file(GLOB HDRS ${CMAKE_CURRENT_LIST_DIR}/*.h)
++install(FILES ${HDRS} DESTINATION include/opencensus-cpp/opencensus/exporters/stats/stdout)
++
+ opencensus_test(exporters_stats_stdout_test internal/stdout_exporter_test.cc
+ exporters_stats_stdout stats stats_test_utils absl::time)
+diff --git a/opencensus/exporters/trace/stdout/CMakeLists.txt b/opencensus/exporters/trace/stdout/CMakeLists.txt
+index c7c580f..d9befa1 100644
+--- a/opencensus/exporters/trace/stdout/CMakeLists.txt
++++ b/opencensus/exporters/trace/stdout/CMakeLists.txt
+@@ -22,5 +22,8 @@ opencensus_lib(
+ absl::base
+ absl::memory)
+
++file(GLOB HDRS ${CMAKE_CURRENT_LIST_DIR}/*.h)
++install(FILES ${HDRS} DESTINATION include/opencensus-cpp/opencensus/exporters/trace/stdout)
++
+ opencensus_test(exporters_trace_stdout_test internal/stdout_exporter_test.cc
+ exporters_trace_stdout trace absl::time)
+diff --git a/opencensus/stats/CMakeLists.txt b/opencensus/stats/CMakeLists.txt
+index 9b0d7af..a8a9d50 100644
+--- a/opencensus/stats/CMakeLists.txt
++++ b/opencensus/stats/CMakeLists.txt
+@@ -71,6 +71,12 @@ opencensus_lib(
+ absl::strings
+ absl::time)
+
++file(GLOB HDRS ${CMAKE_CURRENT_LIST_DIR}/*.h)
++install(FILES ${HDRS} DESTINATION include/opencensus-cpp/opencensus/stats)
++
++file(GLOB HDRS ${CMAKE_CURRENT_LIST_DIR}/internal/*.h)
++install(FILES ${HDRS} DESTINATION include/opencensus-cpp/opencensus/stats/internal)
++
+ # ----------------------------------------------------------------------
+ # Tests
+ # ----------------------------------------------------------------------
+diff --git a/opencensus/tags/CMakeLists.txt b/opencensus/tags/CMakeLists.txt
+index 7219a2a..97a0de1 100644
+--- a/opencensus/tags/CMakeLists.txt
++++ b/opencensus/tags/CMakeLists.txt
+@@ -53,6 +53,12 @@ opencensus_lib(
+ context
+ absl::strings)
+
++file(GLOB HDRS ${CMAKE_CURRENT_LIST_DIR}/*.h)
++install(FILES ${HDRS} DESTINATION include/opencensus-cpp/opencensus/tags)
++
++file(GLOB HDRS ${CMAKE_CURRENT_LIST_DIR}/propagation/*.h)
++install(FILES ${HDRS} DESTINATION include/opencensus-cpp/opencensus/tags/propagation)
++
+ opencensus_test(tags_context_util_test internal/context_util_test.cc tags
+ tags_context_util tags_with_tag_map context)
+
+diff --git a/opencensus/trace/CMakeLists.txt b/opencensus/trace/CMakeLists.txt
+index 2c4e656..25d7241 100644
+--- a/opencensus/trace/CMakeLists.txt
++++ b/opencensus/trace/CMakeLists.txt
+@@ -122,6 +122,18 @@ opencensus_lib(
+ trace
+ context)
+
++file(GLOB HDRS ${CMAKE_CURRENT_LIST_DIR}/*.h)
++install(FILES ${HDRS} DESTINATION include/opencensus-cpp/opencensus/trace)
++
++file(GLOB HDRS ${CMAKE_CURRENT_LIST_DIR}/exporter/*.h)
++install(FILES ${HDRS} DESTINATION include/opencensus-cpp/opencensus/trace/exporter)
++
++file(GLOB HDRS ${CMAKE_CURRENT_LIST_DIR}/internal/*.h)
++install(FILES ${HDRS} DESTINATION include/opencensus-cpp/opencensus/trace/internal)
++
++file(GLOB HDRS ${CMAKE_CURRENT_LIST_DIR}/propagation/*.h)
++install(FILES ${HDRS} DESTINATION include/opencensus-cpp/opencensus/trace/propagation)
++
+ # ----------------------------------------------------------------------
+ # Tests
+ # ----------------------------------------------------------------------