Added icon.h

This commit is contained in:
2021-08-18 16:53:11 +02:00
parent bf844d5f6e
commit f4b568f055
2 changed files with 49 additions and 0 deletions

36
CMakeLists.txt Normal file
View File

@@ -0,0 +1,36 @@
set(headers
src/icon.h
)
set(sources
)
set(dependencies
cpputils
espchrono
espcpputils
expected
fmt
TFT_eSPI
)
idf_component_register(
INCLUDE_DIRS
src
SRCS
${headers}
${sources}
REQUIRES
${dependencies}
)
target_compile_options(${COMPONENT_TARGET}
PRIVATE
-fstack-reuse=all
-fstack-protector-all
-Wno-unused-function
-Wno-deprecated-declarations
-Wno-missing-field-initializers
-Wno-parentheses
)