17 lines
481 B
CMake
17 lines
481 B
CMake
idf_component_register(SRCS main.cpp App.cpp Settings.cpp Led.cpp TaskFactory.cpp Wifi.cpp utilities.cpp
|
|
INCLUDE_DIRS "."
|
|
# EMBED_TXTFILES ../private.txt ../public.txt
|
|
)
|
|
|
|
#message(FATAL_ERROR "error ${ROLE}")
|
|
#if(ROLE EQUAL 1)
|
|
|
|
target_compile_options(${COMPONENT_LIB} PRIVATE -frtti)
|
|
|
|
#if("${ROLE}" STREQUAL "SENDER")
|
|
# add_compile_definitions(ROLE_SENDER)
|
|
#else()
|
|
# add_compile_definitions(ROLE_RECEIVER)
|
|
#endif()
|
|
|