esp-idf/tools/test_apps/protocols/esp_netif/build_config
Djordje Nedic facab8c5a7 tools: Increase the minimal supported CMake version to 3.16
This updates the minimal supported version of CMake to 3.16, which in turn enables us to use more CMake features and have a cleaner build system.
This is the version that provides most new features and also the one we use in our latest docker image for CI.
2022-06-01 06:35:02 +00:00
..
main Whitespace: Automated whitespace fixes (large commit) 2020-11-11 07:36:35 +00:00
CMakeLists.txt tools: Increase the minimal supported CMake version to 3.16 2022-06-01 06:35:02 +00:00
README.md CI: enable example builds for C3 2021-02-09 12:04:02 +08:00

Supported Targets ESP32 ESP32-S2 ESP32-C3

Build only test for C++/C configuration

This test application aims to exercise different configuration options using standard espressif initialization pattern:

component_config cfg = COMPONENT_DEFAULT_CFG();
cfg.member1 = custom_config_for_member1;
...
cfg.memberN = custom_config_for_memberN;
esp_err_t = component_init(cfg);

To be build with both C++ and C compilers.