mirror of
https://github.com/espressif/esp-matter.git
synced 2026-04-27 19:13:13 +00:00
11 lines
320 B
CMake
11 lines
320 B
CMake
# Generating matter/tracing/build_config.h
|
|
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/matter/tracing/build_config.h
|
|
"#pragma once\n
|
|
#include <sdkconfig.h>\n
|
|
#if defined(CONFIG_ENABLE_ESP_INSIGHTS_TRACE) && !defined(CONFIG_IDF_TARGET_ESP32H2)
|
|
#define MATTER_TRACING_ENABLED 1
|
|
#else
|
|
#define MATTER_TRACING_ENABLED 0
|
|
#endif
|
|
")
|