2018-09-10 21:44:12 -04:00
|
|
|
# The following lines of boilerplate have to be in your project's CMakeLists
|
2018-02-27 01:44:31 -05:00
|
|
|
# in this exact order for cmake to work correctly
|
2022-05-27 04:10:51 -04:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
2018-02-27 01:44:31 -05:00
|
|
|
|
2023-01-11 23:39:25 -05:00
|
|
|
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/common_components/protocol_examples_common)
|
|
|
|
|
2023-01-09 04:51:40 -05:00
|
|
|
if(${IDF_TARGET} STREQUAL "linux")
|
2023-01-11 23:39:25 -05:00
|
|
|
list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/mocks/freertos/"
|
2023-01-09 04:51:40 -05:00
|
|
|
"$ENV{IDF_PATH}/examples/protocols/linux_stubs/esp_stubs")
|
|
|
|
set(COMPONENTS main)
|
|
|
|
endif()
|
2018-11-20 11:42:37 -05:00
|
|
|
|
2018-02-27 01:44:31 -05:00
|
|
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
2018-08-27 23:10:48 -04:00
|
|
|
project(simple)
|