esp-idf-lib/components/color/CMakeLists.txt

Tue, 28 Mar 2023 11:25:46 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Tue, 28 Mar 2023 11:25:46 +0200
changeset 2
3462a53e548f
parent 1
1c9894662795
permissions
-rw-r--r--

Finished the BMP280 task.

if(${IDF_VERSION_MAJOR} STREQUAL 4 AND ${IDF_VERSION_MINOR} STREQUAL 1 AND ${IDF_VERSION_PATCH} STREQUAL 3)
	message("Not including esp_timer in color")
    	set(req lib8tion)	
else()
    message("Including esp_timer in color")
    set(req lib8tion)	
endif()

idf_component_register(
    SRCS color.c
    INCLUDE_DIRS .
    REQUIRES ${req}
)

mercurial