From 4358c3ceabb18488c2bfba58aa89657fe5e94f1b Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Tue, 10 Nov 2020 17:51:08 +1100 Subject: [PATCH] cmake: Apply cmakelint fixes * Original commit: espressif/esp-idf@e82eac4354b8b4111697656f3acce7450eeff366 --- components/asio/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/asio/CMakeLists.txt b/components/asio/CMakeLists.txt index e45f2c95f..c088644f9 100644 --- a/components/asio/CMakeLists.txt +++ b/components/asio/CMakeLists.txt @@ -1,6 +1,6 @@ set(asio_sources "asio/asio/src/asio.cpp") -if (CONFIG_ASIO_SSL_SUPPORT) +if(CONFIG_ASIO_SSL_SUPPORT) if(CONFIG_ASIO_USE_ESP_OPENSSL) list(APPEND asio_sources "asio/asio/src/asio_ssl.cpp" @@ -17,7 +17,7 @@ idf_component_register(SRCS ${asio_sources} INCLUDE_DIRS "asio/asio/include" "port/include" REQUIRES lwip) -if (CONFIG_ASIO_SSL_SUPPORT) +if(CONFIG_ASIO_SSL_SUPPORT) if(CONFIG_ASIO_USE_ESP_WOLFSSL) idf_component_get_property(wolflib esp-wolfssl COMPONENT_LIB) idf_component_get_property(wolfdir esp-wolfssl COMPONENT_DIR)