Initial project creation, blank without any custom code

This commit is contained in:
Matthias Mitscherlich
2023-01-12 19:54:39 +01:00
commit e27fe1ebfe
9 changed files with 97 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
# See the build system documentation in IDF programming guide
# for more information about component CMakeLists.txt files.
idf_component_register(
SRCS main.c # list the source files of this component
INCLUDE_DIRS # optional, add here public include directories
PRIV_INCLUDE_DIRS # optional, add here private include directories
REQUIRES # optional, list the public requirements (component names)
PRIV_REQUIRES # optional, list the private requirements
)