mirror of
https://github.com/espressif/esp-matter.git
synced 2026-04-27 19:13:13 +00:00
12 lines
297 B
CMake
12 lines
297 B
CMake
# Generating access/AccessBuildConfig.h
|
|
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/access/AccessBuildConfig.h
|
|
"#pragma once\n
|
|
#include <sdkconfig.h>\n
|
|
|
|
#ifdef CONFIG_ENABLE_ACCESS_RESTRICTIONS
|
|
#define CHIP_CONFIG_USE_ACCESS_RESTRICTIONS 1
|
|
#else
|
|
#define CHIP_CONFIG_USE_ACCESS_RESTRICTIONS 0
|
|
#endif
|
|
")
|