First upload to repository
This commit is contained in:
16
components/ssd1306/CMakeLists.txt
Normal file
16
components/ssd1306/CMakeLists.txt
Normal file
@@ -0,0 +1,16 @@
|
||||
set(component_srcs "ssd1306.c" "ssd1306_spi.c")
|
||||
|
||||
# get IDF version for comparison
|
||||
set(idf_version "${IDF_VERSION_MAJOR}.${IDF_VERSION_MINOR}")
|
||||
|
||||
if(idf_version VERSION_GREATER_EQUAL "5.2")
|
||||
if(CONFIG_LEGACY_DRIVER)
|
||||
list(APPEND component_srcs "ssd1306_i2c_legacy.c")
|
||||
else()
|
||||
list(APPEND component_srcs "ssd1306_i2c_new.c")
|
||||
endif()
|
||||
else()
|
||||
list(APPEND component_srcs "ssd1306_i2c_legacy.c")
|
||||
endif()
|
||||
|
||||
idf_component_register(SRCS "${component_srcs}" PRIV_REQUIRES driver INCLUDE_DIRS "include")
|
||||
Reference in New Issue
Block a user