Files
wordclock/code/main/CMakeLists.txt
T
Matthias Mitscherlich a59459cd18 Merge branch 'wifi'
2023-01-13 14:55:22 +01:00

22 lines
699 B
CMake

# See the build system documentation in IDF programming guide
# for more information about component CMakeLists.txt files.
idf_component_register(
<<<<<<< HEAD
SRCS # list the source files of this component
"main.cpp"
"src/gpio.cpp"
=======
SRCS # list the source files of this component
"main.cpp"
"gpio.cpp"
"wifi.cpp"
>>>>>>> wifi
INCLUDE_DIRS # optional, add here public include directories
"inc"
PRIV_INCLUDE_DIRS # optional, add here private include directories
REQUIRES # optional, list the public requirements (component names)
PRIV_REQUIRES # optional, list the private requirements
)