Skip to content
Snippets Groups Projects
Commit bfb24f93 authored by dpuzyrkov's avatar dpuzyrkov
Browse files

[*] really exclude network-monitor if OFF_CORE_CELLFRAME_SDK_TESTS_OFF matches "network-monitor"

parent 1d3fad6a
No related branches found
No related tags found
1 merge request!897hotfix-6925
...@@ -7,7 +7,11 @@ file(GLOB SRCS *.c) ...@@ -7,7 +7,11 @@ file(GLOB SRCS *.c)
if(UNIX) if(UNIX)
file(GLOB PLATROFM_DEP_SRC unix/*.c unix/*.h) if (OFF_CORE_CELLFRAME_SDK_TESTS_OFF MATCHES "network-monitor")
file(GLOB PLATROFM_DEP_SRC unix/dap_cpu*.c unix/dap_process*.c unix/dap_cpu*.h unix/dap_process*.h)
else()
file(GLOB PLATROFM_DEP_SRC unix/*.c unix/*.h)
endif()
endif() endif()
add_executable(${PROJECT_NAME} ${SRCS} ${PLATROFM_DEP_SRC}) add_executable(${PROJECT_NAME} ${SRCS} ${PLATROFM_DEP_SRC})
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
#include "dap_circular_test.h" #include "dap_circular_test.h"
#include "dap_process_mem_test.h" #include "dap_process_mem_test.h"
#include "dap_cpu_monitor_test.h" #include "dap_cpu_monitor_test.h"
#ifndef DDAP_NETWORK_MONITOR_TEST_OFF #ifndef DAP_NETWORK_MONITOR_TEST_OFF
#include "dap_network_monitor.h" #include "dap_network_monitor.h"
#include "dap_network_monitor_test.h" #include "dap_network_monitor_test.h"
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment