13 lines
406 B
CMake
13 lines
406 B
CMake
idf_component_register(
|
|
SRCS
|
|
"main.cpp"
|
|
"hardware_bootstrap.cpp"
|
|
"$<$<BOOL:${CONFIG_TEST_FIRMWARE}>:test_firmware.cpp>"
|
|
INCLUDE_DIRS "."
|
|
REQUIRES core net secure_store adau1701 si4684 tuner audio bt1035 bluetooth station integration ota eeprom24aa
|
|
)
|
|
|
|
if(CONFIG_TEST_FIRMWARE)
|
|
set(EXTRA_COMPONENT_DIRS "${EXTRA_COMPONENT_DIRS}" "${CMAKE_CURRENT_SOURCE_DIR}")
|
|
endif()
|