Merge pull request #2472 from fherrera124/fix-esp-idf-support
Fixing support for registering this library as an ESP-IDF component
This commit is contained in:
commit
d3185f812d
|
@ -1,10 +1,16 @@
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
project(u8g2)
|
|
||||||
|
|
||||||
set(COMPONENT_ADD_INCLUDEDIRS csrc)
|
set(COMPONENT_ADD_INCLUDEDIRS csrc)
|
||||||
file(GLOB COMPONENT_SRCS csrc/*.c)
|
file(GLOB COMPONENT_SRCS csrc/*.c)
|
||||||
file(GLOB COMPONENT_HDRS csrc/*.h)
|
file(GLOB COMPONENT_HDRS csrc/*.h)
|
||||||
|
|
||||||
|
if(COMMAND idf_component_register)
|
||||||
|
idf_component_register(SRCS "${COMPONENT_SRCS}" INCLUDE_DIRS csrc)
|
||||||
|
return()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
project(u8g2)
|
||||||
|
|
||||||
if(COMMAND register_component)
|
if(COMMAND register_component)
|
||||||
set(COMPONENT_NAME ".")
|
set(COMPONENT_NAME ".")
|
||||||
register_component()
|
register_component()
|
||||||
|
|
Loading…
Reference in New Issue