File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ Increment the:
15
15
16
16
## [ Unreleased]
17
17
18
+ * [ BUILD] Propagate INTERFACE_COMPILE_DEFINITIONS from API through common_foo_library
19
+ [ #3440 ] ( https://github.com/open-telemetry/opentelemetry-cpp/pull/3440 )
20
+
18
21
* [ BUILD] Error out when building DLL without MSVC
19
22
[ #3438 ] ( https://github.com/open-telemetry/opentelemetry-cpp/pull/3438 )
20
23
Original file line number Diff line number Diff line change @@ -12,4 +12,4 @@ endif()
12
12
13
13
target_include_directories (common_foo_library
14
14
PUBLIC "$<BUILD_INTERFACE:${EXAMPLES_COMMON_DIR} >" )
15
- target_link_libraries (common_foo_library PRIVATE opentelemetry-cpp::api )
15
+ target_link_libraries (common_foo_library PUBLIC opentelemetry-cpp::api )
Original file line number Diff line number Diff line change @@ -13,4 +13,4 @@ endif()
13
13
target_include_directories (common_logs_foo_library
14
14
PUBLIC $< BUILD_INTERFACE:${EXAMPLES_COMMON_DIR} > )
15
15
16
- target_link_libraries (common_logs_foo_library PRIVATE opentelemetry-cpp::api )
16
+ target_link_libraries (common_logs_foo_library PUBLIC opentelemetry-cpp::api )
Original file line number Diff line number Diff line change @@ -13,4 +13,4 @@ endif()
13
13
target_include_directories (common_metrics_foo_library
14
14
PUBLIC $< BUILD_INTERFACE:${EXAMPLES_COMMON_DIR} > )
15
15
16
- target_link_libraries (common_metrics_foo_library PRIVATE opentelemetry-cpp::api )
16
+ target_link_libraries (common_metrics_foo_library PUBLIC opentelemetry-cpp::api )
You can’t perform that action at this time.
0 commit comments