CMakeLists.txt 372 B

12345678910
  1. cmake_minimum_required(VERSION 3.16)
  2. include($ENV{IDF_PATH}/tools/cmake/project.cmake)
  3. set(COMPONENTS main)
  4. # Freertos is included via common components. However, CATCH isn't compatible with the FreeRTOS component yet, hence
  5. # using the FreeRTOS mock component.
  6. # target.
  7. list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/mocks/freertos/")
  8. project(fatfs_host_test)