Преглед изворни кода

cmake: add comment that IDF build target must be global

Renz Christian Bagaporo пре 5 година
родитељ
комит
ba579d66ba
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      tools/cmake/build.cmake

+ 2 - 2
tools/cmake/build.cmake

@@ -1,4 +1,3 @@
-
 # idf_build_get_property
 #
 # @brief Retrieve the value of the specified property related to ESP-IDF build.
@@ -126,7 +125,8 @@ endfunction()
 # properties used for the processing phase of the build.
 #
 function(__build_init idf_path)
-    # Create the build target, to which the ESP-IDF build properties, dependencies are attached to
+    # Create the build target, to which the ESP-IDF build properties, dependencies are attached to.
+    # Must be global so as to be accessible from any subdirectory in custom projects.
     add_library(__idf_build_target STATIC IMPORTED GLOBAL)
 
     set_default(python "python")