CMakeLists.txt 252 B

123456789
  1. if(CONFIG_IDF_TARGET_ESP32)
  2. set(main_src "secure_boot_main_esp32.c")
  3. else()
  4. set(main_src "secure_boot_main.c")
  5. endif()
  6. idf_component_register(SRCS "${main_src}" INCLUDE_DIRS ".")
  7. target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format")