mirror of
https://github.com/espressif/esp-idf
synced 2025-03-10 01:29:21 -04:00
This commit: - Removes the link time symbol name clash detection. - Extracts symbols of type NOTYPE for global identifiers defined in assembly files. - Makes the prefix argument optional for ulp_add_build_binary_targets(). - Adds a unit test for the ulp binary embed with a prefix feature.
12 lines
320 B
CMake
12 lines
320 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
include(${IDF_PATH}/tools/cmake/idf.cmake)
|
|
project(${ULP_APP_NAME})
|
|
add_executable(${ULP_APP_NAME})
|
|
|
|
include(IDFULPProject)
|
|
|
|
ulp_apply_default_options(${ULP_APP_NAME})
|
|
ulp_apply_default_sources(${ULP_APP_NAME})
|
|
ulp_add_build_binary_targets(${ULP_APP_NAME} PREFIX ${ULP_VAR_PREFIX})
|