CMakeLists.txt 443 B

12345678910
  1. idf_component_register( SRC_DIRS .
  2. INCLUDE_DIRS .
  3. PRIV_REQUIRES bootloader_support
  4. )
  5. target_link_libraries(${COMPONENT_LIB} INTERFACE "-Wl,--undefined=esp_app_desc")
  6. idf_build_get_property(project_ver PROJECT_VER)
  7. message("******************* ${project_ver}")
  8. string(SUBSTRING "${project_ver}" 0 31 PROJECT_VER_CUT)
  9. set_source_files_properties(recovery.c PROPERTIES COMPILE_DEFINITIONS "PROJECT_VER=\"${PROJECT_VER_CUT}\"")