mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-03 11:23:58 +00:00
[libc][NFC] Eliminate the internal header library target. (#65837)
The internal header library target with name suffix `.__header_library` has been removed as it serves no purpose now. It was added to make older versions of CMake happy.
This commit is contained in:
parent
f3c2a3de84
commit
eb06125604
@ -175,27 +175,19 @@ function(create_header_library fq_target_name)
|
||||
endforeach()
|
||||
endif()
|
||||
endif()
|
||||
set(interface_target_name "${fq_target_name}.__header_library__")
|
||||
|
||||
add_library(${interface_target_name} INTERFACE)
|
||||
target_sources(${interface_target_name} INTERFACE ${FULL_HDR_PATHS})
|
||||
add_library(${fq_target_name} INTERFACE)
|
||||
target_sources(${fq_target_name} INTERFACE ${FULL_HDR_PATHS})
|
||||
if(ADD_HEADER_DEPENDS)
|
||||
add_dependencies(${interface_target_name} ${ADD_HEADER_DEPENDS})
|
||||
add_dependencies(${fq_target_name} ${ADD_HEADER_DEPENDS})
|
||||
endif()
|
||||
set_target_properties(
|
||||
${interface_target_name}
|
||||
PROPERTIES
|
||||
INTERFACE_FLAGS "${ADD_HEADER_FLAGS}"
|
||||
)
|
||||
if(ADD_HEADER_COMPILE_OPTIONS)
|
||||
target_compile_options(${interface_target_name} INTERFACE ${ADD_HEADER_COMPILE_OPTIONS})
|
||||
target_compile_options(${fq_target_name} INTERFACE ${ADD_HEADER_COMPILE_OPTIONS})
|
||||
endif()
|
||||
|
||||
add_custom_target(${fq_target_name})
|
||||
add_dependencies(${fq_target_name} ${interface_target_name})
|
||||
set_target_properties(
|
||||
${fq_target_name}
|
||||
PROPERTIES
|
||||
INTERFACE_FLAGS "${ADD_HEADER_FLAGS}"
|
||||
TARGET_TYPE "${HDR_LIBRARY_TARGET_TYPE}"
|
||||
DEPS "${ADD_HEADER_DEPENDS}"
|
||||
FLAGS "${ADD_HEADER_FLAGS}"
|
||||
|
Loading…
Reference in New Issue
Block a user