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

Mon, 17 Apr 2023 14:54:35 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Mon, 17 Apr 2023 14:54:35 +0200
changeset 31
ec5c7794dcd6
parent 1
1c9894662795
permissions
-rw-r--r--

Added basic BLE code.

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