1message(WARNING "Embedding ULP binary by including \ 2${IDF_PATH}/components/ulp/component_ulp_common.cmake is deprecated. Use `ulp_embed_binary` instead. \ 3See API Guide for more details.") 4 5spaces2list(ULP_S_SOURCES) 6spaces2list(ULP_EXP_DEP_SRCS) 7 8foreach(ulp_s_source ${ULP_S_SOURCES}) 9 get_filename_component(ulp_src ${ulp_s_source} ABSOLUTE BASE_DIR ${COMPONENT_DIR}) 10 list(APPEND ulp_srcs ${ulp_src}) 11endforeach() 12 13foreach(ulp_exp_dep_src ${ULP_EXP_DEP_SRCS}) 14 get_filename_component(ulp_dep_src ${ulp_exp_dep_src} ABSOLUTE BASE_DIR ${COMPONENT_DIR}) 15 list(APPEND ulp_dep_srcs ${ulp_dep_src}) 16endforeach() 17 18ulp_embed_binary(${ULP_APP_NAME} "${ulp_srcs}" "${ulp_dep_srcs}") 19