Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The following jobs are defined:
- Based on the `toolchain` parameter, the build will use either g++ or
clang++.
- Based on the `sanitize` parameter, the build might use [AddressSanitizer and
MemorySanitizer][3].
UndefinedBehaviorSanitizer][3].

[1]: https://bazel.build/
[2]: https://cmake.org/
Expand Down
4 changes: 2 additions & 2 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ cc_library(
"src/datadog/null_collector.cpp",
"src/datadog/optional.cpp",
"src/datadog/parse_util.cpp",
"src/datadog/propagation_styles.cpp",
"src/datadog/propagation_style.cpp",
"src/datadog/rate.cpp",
"src/datadog/sampling_decision.cpp",
"src/datadog/sampling_mechanism.cpp",
Expand Down Expand Up @@ -77,7 +77,7 @@ cc_library(
"src/datadog/null_collector.h",
"src/datadog/optional.h",
"src/datadog/parse_util.h",
"src/datadog/propagation_styles.h",
"src/datadog/propagation_style.h",
"src/datadog/rate.h",
"src/datadog/sampling_decision.h",
"src/datadog/sampling_mechanism.h",
Expand Down
6 changes: 4 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ project(dd-trace-cpp)

option(BUILD_COVERAGE "Build code with code coverage profiling instrumentation" OFF)
option(BUILD_EXAMPLE "Build the example program (example/)" OFF)
option(BUILD_TESTING "Build the unit tests (test/)" OFF)
option(SANITIZE "Build with address sanitizer and undefined behavior sanitizer" OFF)

set(CMAKE_BUILD_TYPE "RelWithDebInfo")
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
Expand Down Expand Up @@ -78,7 +80,7 @@ target_sources(dd_trace_cpp PRIVATE
src/datadog/null_collector.cpp
src/datadog/optional.cpp
src/datadog/parse_util.cpp
src/datadog/propagation_styles.cpp
src/datadog/propagation_style.cpp
src/datadog/rate.cpp
src/datadog/sampling_decision.cpp
src/datadog/sampling_mechanism.cpp
Expand Down Expand Up @@ -135,7 +137,7 @@ target_sources(dd_trace_cpp PUBLIC
src/datadog/null_collector.h
src/datadog/optional.h
src/datadog/parse_util.h
src/datadog/propagation_styles.h
src/datadog/propagation_style.h
src/datadog/rate.h
src/datadog/sampling_decision.h
src/datadog/sampling_mechanism.h
Expand Down
Loading