CMakeLists.txt 550 B

1234567891011121314
  1. # The following lines of boilerplate have to be in your project's
  2. # CMakeLists in this exact order for cmake to work correctly
  3. cmake_minimum_required(VERSION 3.16)
  4. include($ENV{IDF_PATH}/tools/cmake/project.cmake)
  5. list(PREPEND SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfig.debug_helpers" "sdkconfig.defaults")
  6. # "Trim" the build. Include the minimal set of components, main, and anything it depends on.
  7. set(COMPONENTS main)
  8. set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components")
  9. project(test_esp_event)