CMakeLists.txt 336 B

1234567891011
  1. # This is the project CMakeLists.txt file for the test subproject
  2. cmake_minimum_required(VERSION 3.16)
  3. include($ENV{IDF_PATH}/tools/cmake/project.cmake)
  4. set(EXTRA_COMPONENT_DIRS "../common")
  5. # "Trim" the build. Include the minimal set of components, main, and anything it depends on.
  6. set(COMPONENTS main)
  7. project(test_app_usb_host)