We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c4760a commit bb3889cCopy full SHA for bb3889c
cmake/deps/customlabels.cmake
@@ -0,0 +1,20 @@
1
+if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
2
+
3
+ include(FetchContent)
4
5
+ FetchContent_Declare(customlabels
6
+ URL https://github.com/DataDog/custom-labels.git
7
+ GIT_TAG origin/elsa/custom-labels-for-trace-corr
8
+ )
9
10
+ FetchContent_MakeAvailable(customlabels)
11
12
+ add_library(customlabels SHARED
13
+ ${custom_labels_SOURCE_DIR}/customlabels.c
14
15
16
+ target_include_directories(customlabels
17
+ PUBLIC
18
+ ${custom_labels_SOURCE_DIR}
19
20
+endif()
0 commit comments