CMakeLists.txt 331 B

12345678910
  1. cmake_minimum_required(VERSION 3.5)
  2. include($ENV{IDF_PATH}/tools/cmake/project.cmake)
  3. set(COMPONENTS main)
  4. # Freertos is included via common components, however, currently only the mock component is compatible with linux
  5. # target.
  6. list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/mocks/freertos/")
  7. project(linux_host_app)