]> granicus.if.org Git - esp-idf/commitdiff
components: fix incorrect include dir args
authorRenz Christian Bagaporo <renz@espressif.com>
Tue, 6 Aug 2019 03:00:37 +0000 (11:00 +0800)
committerRenz Christian Bagaporo <renz@espressif.com>
Fri, 9 Aug 2019 00:40:17 +0000 (08:40 +0800)
components/esp-tls/CMakeLists.txt
components/tcp_transport/CMakeLists.txt

index f6cc17c801314769e5ba82cfa3cf422dcb4f17c9..ea6b61216ea3485b533b02de93683a81906006fd 100644 (file)
@@ -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)
index 9d5028a1b6a77dbed7c47199d55b29cf1f9421f5..fe7e71bf31a0a2a364ff60f632cb317b63520b28 100644 (file)
@@ -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)