mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-03 12:44:33 +02:00
Merge branch 'bugfix/cmake_src_exclude_issue' into 'master'
cmake: fix issue with handling of EXCLUDE_SRCS See merge request espressif/esp-idf!5869
This commit is contained in:
@@ -271,7 +271,7 @@ macro(__component_add_sources sources)
|
|||||||
if(__EXCLUDE_SRCS)
|
if(__EXCLUDE_SRCS)
|
||||||
foreach(src ${__EXCLUDE_SRCS})
|
foreach(src ${__EXCLUDE_SRCS})
|
||||||
get_filename_component(src "${src}" ABSOLUTE)
|
get_filename_component(src "${src}" ABSOLUTE)
|
||||||
list(REMOVE_ITEM source "${src}")
|
list(REMOVE_ITEM sources "${src}")
|
||||||
endforeach()
|
endforeach()
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
@@ -551,4 +551,4 @@ endfunction()
|
|||||||
# Wrapper around target_compile_definitions that passes the component name
|
# Wrapper around target_compile_definitions that passes the component name
|
||||||
function(component_compile_definitions)
|
function(component_compile_definitions)
|
||||||
target_compile_definitions(${COMPONENT_LIB} PRIVATE ${ARGV})
|
target_compile_definitions(${COMPONENT_LIB} PRIVATE ${ARGV})
|
||||||
endfunction()
|
endfunction()
|
||||||
|
Reference in New Issue
Block a user