cmake-bugfix:add santity check for target depends and change
inter_library header inheritance level Signed-off-by: xuxin19 <xuxin19@xiaomi.com>
This commit is contained in:
parent
6960f1b967
commit
4b11d37cf7
@ -207,10 +207,13 @@ function(nuttx_add_application)
|
||||
# interface include and libraries
|
||||
foreach(dep ${DEPENDS})
|
||||
nuttx_add_dependencies(TARGET ${TARGET} DEPENDS ${dep})
|
||||
get_target_property(dep_type ${dep} TYPE)
|
||||
if(${dep_type} STREQUAL "STATIC_LIBRARY")
|
||||
target_link_libraries(${TARGET} PRIVATE ${dep})
|
||||
if(TARGET ${dep})
|
||||
get_target_property(dep_type ${dep} TYPE)
|
||||
if(${dep_type} STREQUAL "STATIC_LIBRARY")
|
||||
target_link_libraries(${TARGET} PRIVATE ${dep})
|
||||
endif()
|
||||
endif()
|
||||
|
||||
endforeach()
|
||||
endif()
|
||||
endfunction()
|
||||
|
@ -36,8 +36,8 @@ function(nuttx_add_library_internal target)
|
||||
# add main include directories
|
||||
target_include_directories(
|
||||
${target} SYSTEM
|
||||
PUBLIC ${CMAKE_SOURCE_DIR}/include ${CMAKE_BINARY_DIR}/include
|
||||
${CMAKE_BINARY_DIR}/include_arch)
|
||||
PRIVATE ${CMAKE_SOURCE_DIR}/include ${CMAKE_BINARY_DIR}/include
|
||||
${CMAKE_BINARY_DIR}/include_arch)
|
||||
|
||||
# Set global compile options & definitions We use the "nuttx" target to hold
|
||||
# these properties so that libraries added after this property is set can read
|
||||
|
Loading…
Reference in New Issue
Block a user