From: Renz Christian Bagaporo Date: Tue, 6 Aug 2019 03:00:37 +0000 (+0800) Subject: components: fix incorrect include dir args X-Git-Tag: v4.1-dev~11^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4dd2b9edb15246cde9e37ea3d69de6d2fac39483;p=esp-idf components: fix incorrect include dir args --- diff --git a/components/esp-tls/CMakeLists.txt b/components/esp-tls/CMakeLists.txt index f6cc17c801..ea6b61216e 100644 --- a/components/esp-tls/CMakeLists.txt +++ b/components/esp-tls/CMakeLists.txt @@ -1,5 +1,5 @@ idf_component_register(SRCS "esp_tls.c" INCLUDE_DIRS "." - PRIVATE_INCLUDE_DIRS "private_include" + PRIV_INCLUDE_DIRS "private_include" REQUIRES mbedtls PRIV_REQUIRES lwip nghttp) diff --git a/components/tcp_transport/CMakeLists.txt b/components/tcp_transport/CMakeLists.txt index 9d5028a1b6..fe7e71bf31 100644 --- a/components/tcp_transport/CMakeLists.txt +++ b/components/tcp_transport/CMakeLists.txt @@ -5,5 +5,5 @@ idf_component_register(SRCS "transport.c" "transport_utils.c" "transport_strcasestr.c" INCLUDE_DIRS "include" - PRIVATE_INCLUDE_DIRS "private_include" + PRIV_INCLUDE_DIRS "private_include" REQUIRES lwip esp-tls)