mirror of
https://github.com/espressif/esp-matter.git
synced 2026-04-27 19:13:13 +00:00
15 lines
377 B
CMake
15 lines
377 B
CMake
# Generating ble/BleBuildConfig.h
|
|
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/ble/BleBuildConfig.h
|
|
"#pragma once\n
|
|
#include <sdkconfig.h>\n
|
|
#ifdef CONFIG_ENABLE_CHIPOBLE
|
|
#define CONFIG_NETWORK_LAYER_BLE 1
|
|
#else
|
|
#define CONFIG_NETWORK_LAYER_BLE 0
|
|
#endif
|
|
|
|
#ifndef CONFIG_CHIP_ENABLE_EXTERNAL_PLATFORM
|
|
#define BLE_PLATFORM_CONFIG_INCLUDE <platform/ESP32/BlePlatformConfig.h>
|
|
#endif
|
|
")
|