Files
esp-protocols/components/esp_modem/test/target/main/CMakeLists.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
355 B
CMake
Raw Normal View History

2021-04-04 22:15:46 +02:00
idf_component_register(SRCS "pppd_test.cpp"
"NetworkDCE.cpp"
INCLUDE_DIRS "$ENV{IDF_PATH}/tools/catch"
REQUIRES esp_modem)
set_target_properties(${COMPONENT_LIB} PROPERTIES
CXX_STANDARD 17
CXX_STANDARD_REQUIRED ON
CXX_EXTENSIONS ON
)
2022-11-28 14:35:02 +01:00
target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format")