Skip to content

Commit

Permalink
ignore format warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Lapshin committed Jul 12, 2022
1 parent 82b1aa9 commit d66f9dc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions components/asio/CMakeLists.txt
Expand Up @@ -27,6 +27,7 @@ idf_component_register(SRCS ${asio_sources}
INCLUDE_DIRS "asio/asio/include" "port/include"
PRIV_INCLUDE_DIRS ${asio_priv_includes}
REQUIRES lwip)
target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format")

if(CONFIG_ASIO_SSL_SUPPORT)
if(CONFIG_ASIO_USE_ESP_WOLFSSL)
Expand Down
1 change: 1 addition & 0 deletions components/esp_websocket_client/CMakeLists.txt
Expand Up @@ -10,3 +10,4 @@ idf_component_register(SRCS "esp_websocket_client.c"
INCLUDE_DIRS "include"
REQUIRES lwip esp-tls tcp_transport http_parser
PRIV_REQUIRES esp_timer)
target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format")
@@ -1,2 +1,3 @@
idf_component_register(SRCS "websocket_example.c"
INCLUDE_DIRS ".")
target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format")
1 change: 1 addition & 0 deletions components/mdns/CMakeLists.txt
Expand Up @@ -20,6 +20,7 @@ idf_component_register(
PRIV_INCLUDE_DIRS "private_include"
REQUIRES ${dependencies}
PRIV_REQUIRES ${private_dependencies})
target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format")

if(CONFIG_ETH_ENABLED)
idf_component_optional_requires(PRIVATE esp_eth)
Expand Down
1 change: 1 addition & 0 deletions components/mdns/examples/main/CMakeLists.txt
@@ -1,2 +1,3 @@
idf_component_register(SRCS "mdns_example_main.c"
INCLUDE_DIRS ".")
target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format")

0 comments on commit d66f9dc

Please sign in to comment.