11 lines
212 B
CMake
11 lines
212 B
CMake
cmake_minimum_required(VERSION 3.5)
|
|
|
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
|
|
|
set(EXTRA_COMPONENT_DIRS
|
|
../../components
|
|
)
|
|
|
|
add_compile_options(-fdiagnostics-color=always)
|
|
|
|
project(image_display) |