We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d257e00 commit 91eb773Copy full SHA for 91eb773
tests/internal/CMakeLists.txt
@@ -118,8 +118,14 @@ if(FLB_METRICS)
118
set(UNIT_TESTS_FILES
119
${UNIT_TESTS_FILES}
120
metrics.c
121
- cumulative_to_delta.c
122
)
+
123
+ if (NOT WIN32)
124
+ set(UNIT_TESTS_FILES
125
+ ${UNIT_TESTS_FILES}
126
+ cumulative_to_delta.c
127
+ )
128
+ endif()
129
endif()
130
131
if(FLB_HTTP_SERVER)
@@ -256,7 +262,7 @@ endfunction(prepare_unit_tests)
256
262
257
263
prepare_unit_tests(flb-it- "${UNIT_TESTS_FILES}")
258
264
259
-if(FLB_METRICS AND FLB_PROCESSOR_CUMULATIVE_TO_DELTA)
265
+if(FLB_METRICS AND FLB_PROCESSOR_CUMULATIVE_TO_DELTA AND NOT WIN32)
260
266
set(CUMULATIVE_TO_DELTA_PLUGIN_DIR
261
267
${PROJECT_SOURCE_DIR}/plugins/processor_cumulative_to_delta)
268
set(CUMULATIVE_TO_DELTA_CORE_SOURCE
0 commit comments