Skip to content

build: rename LLVM_COMPONENT_DEPENDS #24508

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 6, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions cmake/modules/AddSwift.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ endfunction()
# [LINK_LIBRARIES dep1 ...]
# [FRAMEWORK_DEPENDS dep1 ...]
# [FRAMEWORK_DEPENDS_WEAK dep1 ...]
# [LLVM_COMPONENT_DEPENDS comp1 ...]
# [LLVM_LINK_COMPONENTS comp1 ...]
# [C_COMPILE_FLAGS flag1...]
# [SWIFT_COMPILE_FLAGS flag1...]
# [LINK_FLAGS flag1...]
Expand Down Expand Up @@ -688,7 +688,7 @@ endfunction()
# FRAMEWORK_DEPENDS_WEAK
# System frameworks this library depends on that should be weakly-linked.
#
# LLVM_COMPONENT_DEPENDS
# LLVM_LINK_COMPONENTS
# LLVM components this library depends on.
#
# C_COMPILE_FLAGS
Expand Down Expand Up @@ -753,7 +753,7 @@ function(_add_swift_library_single target name)
INTERFACE_LINK_LIBRARIES
LINK_FLAGS
LINK_LIBRARIES
LLVM_COMPONENT_DEPENDS
LLVM_LINK_COMPONENTS
PRIVATE_LINK_LIBRARIES
SWIFT_COMPILE_FLAGS)

Expand Down Expand Up @@ -1190,7 +1190,7 @@ function(_add_swift_library_single target name)

if(NOT SWIFTLIB_SINGLE_TARGET_LIBRARY)
# Call llvm_config() only for libraries that are part of the compiler.
swift_common_llvm_config("${target}" ${SWIFTLIB_SINGLE_LLVM_COMPONENT_DEPENDS})
swift_common_llvm_config("${target}" ${SWIFTLIB_SINGLE_LLVM_LINK_COMPONENTS})
endif()

# Collect compile and link flags for the static and non-static targets.
Expand Down Expand Up @@ -1376,7 +1376,7 @@ endfunction()
# add_swift_host_library(name
# [SHARED]
# [STATIC]
# [LLVM_COMPONENT_DEPENDS comp1 ...]
# [LLVM_LINK_COMPONENTS comp1 ...]
# [FILE_DEPENDS target1 ...]
# source1 [source2 source3 ...])
#
Expand All @@ -1389,7 +1389,7 @@ endfunction()
# STATIC
# Build a static library.
#
# LLVM_COMPONENT_DEPENDS
# LLVM_LINK_COMPONENTS
# LLVM components this library depends on.
#
# FILE_DEPENDS
Expand All @@ -1409,7 +1409,7 @@ function(add_swift_host_library name)
FILE_DEPENDS
INTERFACE_LINK_LIBRARIES
LINK_LIBRARIES
LLVM_COMPONENT_DEPENDS)
LLVM_LINK_COMPONENTS)

cmake_parse_arguments(ASHL
"${options}"
Expand Down Expand Up @@ -1446,7 +1446,7 @@ function(add_swift_host_library name)
${ASHL_FORCE_BUILD_OPTIMIZED_keyword}
SDK ${SWIFT_HOST_VARIANT_SDK}
ARCHITECTURE ${SWIFT_HOST_VARIANT_ARCH}
LLVM_COMPONENT_DEPENDS ${ASHL_LLVM_COMPONENT_DEPENDS}
LLVM_LINK_COMPONENTS ${ASHL_LLVM_LINK_COMPONENTS}
FILE_DEPENDS ${ASHL_FILE_DEPENDS}
INSTALL_IN_COMPONENT "dev"
)
Expand Down Expand Up @@ -1482,7 +1482,7 @@ endfunction()
# [SWIFT_MODULE_DEPENDS dep1 ...]
# [FRAMEWORK_DEPENDS dep1 ...]
# [FRAMEWORK_DEPENDS_WEAK dep1 ...]
# [LLVM_COMPONENT_DEPENDS comp1 ...]
# [LLVM_LINK_COMPONENTS comp1 ...]
# [FILE_DEPENDS target1 ...]
# [TARGET_SDKS sdk1...]
# [C_COMPILE_FLAGS flag1...]
Expand Down Expand Up @@ -1548,7 +1548,7 @@ endfunction()
# FRAMEWORK_DEPENDS_WEAK
# System frameworks this library depends on that should be weak-linked
#
# LLVM_COMPONENT_DEPENDS
# LLVM_LINK_COMPONENTS
# LLVM components this library depends on.
#
# FILE_DEPENDS
Expand Down Expand Up @@ -1634,7 +1634,7 @@ function(add_swift_target_library name)
INTERFACE_LINK_LIBRARIES
LINK_FLAGS
LINK_LIBRARIES
LLVM_COMPONENT_DEPENDS
LLVM_LINK_COMPONENTS
PRIVATE_LINK_LIBRARIES
SWIFT_COMPILE_FLAGS
SWIFT_COMPILE_FLAGS_IOS
Expand Down Expand Up @@ -1906,7 +1906,7 @@ function(add_swift_target_library name)
LINK_LIBRARIES ${swiftlib_link_libraries}
FRAMEWORK_DEPENDS ${swiftlib_framework_depends_flattened}
FRAMEWORK_DEPENDS_WEAK ${SWIFTLIB_FRAMEWORK_DEPENDS_WEAK}
LLVM_COMPONENT_DEPENDS ${SWIFTLIB_LLVM_COMPONENT_DEPENDS}
LLVM_LINK_COMPONENTS ${SWIFTLIB_LLVM_LINK_COMPONENTS}
FILE_DEPENDS ${SWIFTLIB_FILE_DEPENDS} ${swiftlib_module_dependency_targets}
C_COMPILE_FLAGS ${swiftlib_c_compile_flags_all}
SWIFT_COMPILE_FLAGS ${swiftlib_swift_compile_flags_all} ${swiftlib_swift_compile_flags_arch} ${swiftlib_swift_compile_private_frameworks_flag}
Expand Down Expand Up @@ -2122,7 +2122,7 @@ function(_add_swift_executable_single name)
cmake_parse_arguments(SWIFTEXE_SINGLE
"EXCLUDE_FROM_ALL"
"SDK;ARCHITECTURE"
"DEPENDS;LLVM_COMPONENT_DEPENDS;LINK_LIBRARIES;COMPILE_FLAGS"
"DEPENDS;LLVM_LINK_COMPONENTS;LINK_LIBRARIES;COMPILE_FLAGS"
${ARGN})

set(SWIFTEXE_SINGLE_SOURCES ${SWIFTEXE_SINGLE_UNPARSED_ARGUMENTS})
Expand Down Expand Up @@ -2223,7 +2223,7 @@ function(_add_swift_executable_single name)
LIBRARY_DIR ${SWIFT_LIBRARY_OUTPUT_INTDIR})

target_link_libraries("${name}" PRIVATE ${SWIFTEXE_SINGLE_LINK_LIBRARIES})
swift_common_llvm_config("${name}" ${SWIFTEXE_SINGLE_LLVM_COMPONENT_DEPENDS})
swift_common_llvm_config("${name}" ${SWIFTEXE_SINGLE_LLVM_LINK_COMPONENTS})

set_target_properties(${name} PROPERTIES FOLDER "Swift executables")
endfunction()
Expand Down
8 changes: 4 additions & 4 deletions lib/AST/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ if (SWIFT_FORCE_OPTIMIZED_TYPECHECKER)
endif()

if(SWIFT_BUILD_ONLY_SYNTAXPARSERLIB)
set(SWIFTAST_LLVM_COMPONENT_DEPENDS)
set(SWIFTAST_LLVM_LINK_COMPONENTS)
else()
set(SWIFTAST_LLVM_COMPONENT_DEPENDS
set(SWIFTAST_LLVM_LINK_COMPONENTS
bitreader bitwriter coroutines coverage irreader debuginfoDWARF
profiledata instrumentation object objcarcopts mc mcparser
bitreader bitwriter lto ipo option core support ${LLVM_TARGETS_TO_BUILD}
Expand Down Expand Up @@ -75,8 +75,8 @@ add_swift_host_library(swiftAST STATIC
UnqualifiedLookup.cpp
USRGeneration.cpp

LLVM_COMPONENT_DEPENDS
${SWIFTAST_LLVM_COMPONENT_DEPENDS}
LLVM_LINK_COMPONENTS
${SWIFTAST_LLVM_LINK_COMPONENTS}

${EXTRA_AST_FLAGS}
)
Expand Down
2 changes: 1 addition & 1 deletion lib/ASTSectionImporter/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
add_swift_host_library(swiftASTSectionImporter STATIC
ASTSectionImporter.cpp
LLVM_COMPONENT_DEPENDS core)
LLVM_LINK_COMPONENTS core)
target_link_libraries(swiftASTSectionImporter PRIVATE
swiftBasic)

2 changes: 1 addition & 1 deletion lib/Basic/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ add_swift_host_library(swiftBasic STATIC
GYB_SOURCES
UnicodeExtendedGraphemeClusters.cpp.gyb

LLVM_COMPONENT_DEPENDS support)
LLVM_LINK_COMPONENTS support)
target_include_directories(swiftBasic PRIVATE
${UUID_INCLUDE})

Expand Down
2 changes: 1 addition & 1 deletion lib/IRGen/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ add_swift_host_library(swiftIRGen STATIC
TypeLayoutDumper.cpp
TypeLayoutVerifier.cpp

LLVM_COMPONENT_DEPENDS
LLVM_LINK_COMPONENTS
target
transformutils
)
Expand Down
2 changes: 1 addition & 1 deletion lib/Immediate/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
add_swift_host_library(swiftImmediate STATIC
Immediate.cpp
REPL.cpp
LLVM_COMPONENT_DEPENDS
LLVM_LINK_COMPONENTS
executionengine
linker
mcjit
Expand Down
2 changes: 1 addition & 1 deletion lib/LLVMPasses/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ add_swift_host_library(swiftLLVMPasses STATIC
LLVMInlineTree.cpp
LLVMMergeFunctions.cpp

LLVM_COMPONENT_DEPENDS
LLVM_LINK_COMPONENTS
analysis
)

2 changes: 1 addition & 1 deletion lib/TBDGen/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ add_subdirectory(tapi)
add_swift_host_library(swiftTBDGen STATIC
${TAPI_SOURCES}
TBDGen.cpp
LLVM_COMPONENT_DEPENDS
LLVM_LINK_COMPONENTS
demangle
)
target_link_libraries(swiftTBDGen PRIVATE
Expand Down
4 changes: 2 additions & 2 deletions stdlib/cmake/modules/AddSwiftStdlib.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function(add_swift_target_executable name)
cmake_parse_arguments(SWIFTEXE_TARGET
"EXCLUDE_FROM_ALL;;BUILD_WITH_STDLIB"
""
"DEPENDS;LLVM_COMPONENT_DEPENDS;LINK_LIBRARIES"
"DEPENDS;LLVM_LINK_COMPONENTS;LINK_LIBRARIES"
${ARGN})

set(SWIFTEXE_TARGET_SOURCES ${SWIFTEXE_TARGET_UNPARSED_ARGUMENTS})
Expand Down Expand Up @@ -56,7 +56,7 @@ function(add_swift_target_executable name)
${VARIANT_NAME}
${SWIFTEXE_TARGET_SOURCES}
DEPENDS ${SWIFTEXE_TARGET_DEPENDS_with_suffix}
LLVM_COMPONENT_DEPENDS ${SWIFTEXE_TARGET_LLVM_COMPONENT_DEPENDS}
LLVM_LINK_COMPONENTS ${SWIFTEXE_TARGET_LLVM_LINK_COMPONENTS}
SDK "${sdk}"
ARCHITECTURE "${arch}"
LINK_LIBRARIES ${SWIFTEXE_TARGET_LINK_LIBRARIES}
Expand Down
24 changes: 12 additions & 12 deletions tools/SourceKit/cmake/modules/AddSwiftSourceKit.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -89,15 +89,15 @@ endfunction()
# add_sourcekit_library(name # Name of the library
# [LINK_LIBS dep1 ...] # Libraries this library will be linked with
# [DEPENDS dep1 ...] # Targets this library depends on
# [LLVM_COMPONENT_DEPENDS comp1 ...] # LLVM components this library depends on
# [LLVM_LINK_COMPONENTS comp1 ...] # LLVM components this library depends on
# [INSTALL_IN_COMPONENT comp] # The Swift installation component that this library belongs to.
# [SHARED]
# source1 [source2 source3 ...]) # Sources to add into this library
macro(add_sourcekit_library name)
cmake_parse_arguments(SOURCEKITLIB
"SHARED"
"INSTALL_IN_COMPONENT"
"HEADERS;LINK_LIBS;DEPENDS;LLVM_COMPONENT_DEPENDS"
"HEADERS;LINK_LIBS;DEPENDS;LLVM_LINK_COMPONENTS"
${ARGN})
set(srcs ${SOURCEKITLIB_UNPARSED_ARGUMENTS})

Expand Down Expand Up @@ -161,7 +161,7 @@ macro(add_sourcekit_library name)
target_link_libraries("${name}" INTERFACE ${SOURCEKITLIB_LINK_LIBS})
endif()

swift_common_llvm_config(${name} ${SOURCEKITLIB_LLVM_COMPONENT_DEPENDS})
swift_common_llvm_config(${name} ${SOURCEKITLIB_LLVM_LINK_COMPONENTS})

if(SOURCEKITLIB_SHARED AND EXPORTED_SYMBOL_FILE)
add_sourcekit_symbol_exports(${name} ${EXPORTED_SYMBOL_FILE})
Expand Down Expand Up @@ -205,7 +205,7 @@ endmacro()
# Usage:
# add_sourcekit_executable(name # Name of the executable
# [LINK_LIBS dep1 ...] # Libraries this executable depends on
# [LLVM_COMPONENT_DEPENDS comp1 ...] # LLVM components this executable
# [LLVM_LINK_COMPONENTS comp1 ...] # LLVM components this executable
# # depends on
# [EXCLUDE_FROM_ALL] # Whether to exclude this executable from
# # the ALL_BUILD target
Expand All @@ -214,7 +214,7 @@ macro(add_sourcekit_executable name)
cmake_parse_arguments(SOURCEKITEXE
"EXCLUDE_FROM_ALL"
""
"LINK_LIBS;LLVM_COMPONENT_DEPENDS"
"LINK_LIBS;LLVM_LINK_COMPONENTS"
${ARGN})

if (${SOURCEKITEXE_EXCLUDE_FROM_ALL})
Expand All @@ -233,7 +233,7 @@ macro(add_sourcekit_executable name)
endif()

target_link_libraries(${name} PRIVATE ${SOURCEKITEXE_LINK_LIBS})
swift_common_llvm_config(${name} ${SOURCEKITEXE_LLVM_COMPONENT_DEPENDS})
swift_common_llvm_config(${name} ${SOURCEKITEXE_LLVM_LINK_COMPONENTS})
target_link_libraries(${name} PRIVATE ${LLVM_COMMON_LIBS})

set_target_properties(${name} PROPERTIES FOLDER "SourceKit executables")
Expand All @@ -256,13 +256,13 @@ endmacro()
# Usage:
# add_sourcekit_framework(name # Name of the framework
# [LINK_LIBS dep1 ...] # Libraries this framework will link with
# [LLVM_COMPONENT_DEPENDS comp1 ...] # LLVM components this framework depends on
# [LLVM_LINK_COMPONENTS comp1 ...] # LLVM components this framework depends on
# [MODULEMAP modulemap] # Module map file for this framework
# [INSTALL_IN_COMPONENT comp] # The Swift installation component that this framework belongs to.
# source1 [source2 source3 ...]) # Sources to add into this framework
macro(add_sourcekit_framework name)
cmake_parse_arguments(SOURCEKITFW
"" "MODULEMAP;INSTALL_IN_COMPONENT" "LINK_LIBS;LLVM_COMPONENT_DEPENDS" ${ARGN})
"" "MODULEMAP;INSTALL_IN_COMPONENT" "LINK_LIBS;LLVM_LINK_COMPONENTS" ${ARGN})
set(srcs ${SOURCEKITFW_UNPARSED_ARGUMENTS})

set(lib_dir ${SOURCEKIT_LIBRARY_OUTPUT_INTDIR})
Expand Down Expand Up @@ -305,7 +305,7 @@ macro(add_sourcekit_framework name)
endif(LLVM_COMMON_DEPENDS)

target_link_libraries(${name} PRIVATE ${SOURCEKITFW_LINK_LIBS})
swift_common_llvm_config(${name} ${SOURCEKITFW_LLVM_COMPONENT_DEPENDS})
swift_common_llvm_config(${name} ${SOURCEKITFW_LLVM_LINK_COMPONENTS})

if (EXPORTED_SYMBOL_FILE)
add_sourcekit_symbol_exports(${name} ${EXPORTED_SYMBOL_FILE})
Expand Down Expand Up @@ -375,10 +375,10 @@ endmacro(add_sourcekit_framework)
# Usage:
# add_sourcekit_xpc_service(name # Name of the XPC service
# [LINK_LIBS dep1 ...] # Libraries this service will link with
# [LLVM_COMPONENT_DEPENDS comp1 ...] # LLVM components this service depends on
# [LLVM_LINK_COMPONENTS comp1 ...] # LLVM components this service depends on
# source1 [source2 source3 ...]) # Sources to add into this service
macro(add_sourcekit_xpc_service name framework_target)
cmake_parse_arguments(SOURCEKITXPC "" "" "LINK_LIBS;LLVM_COMPONENT_DEPENDS" ${ARGN})
cmake_parse_arguments(SOURCEKITXPC "" "" "LINK_LIBS;LLVM_LINK_COMPONENTS" ${ARGN})
set(srcs ${SOURCEKITXPC_UNPARSED_ARGUMENTS})

set(lib_dir ${SOURCEKIT_LIBRARY_OUTPUT_INTDIR})
Expand Down Expand Up @@ -420,7 +420,7 @@ macro(add_sourcekit_xpc_service name framework_target)
endif(LLVM_COMMON_DEPENDS)

target_link_libraries(${name} PRIVATE ${SOURCEKITXPC_LINK_LIBS})
swift_common_llvm_config(${name} ${SOURCEKITXPC_LLVM_COMPONENT_DEPENDS})
swift_common_llvm_config(${name} ${SOURCEKITXPC_LLVM_LINK_COMPONENTS})
target_link_libraries(${name} PRIVATE ${LLVM_COMMON_LIBS})

add_dependencies(${framework_target} ${name})
Expand Down
2 changes: 1 addition & 1 deletion tools/SourceKit/lib/SwiftLang/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ add_sourcekit_library(SourceKitSwiftLang
clangAST
clangAPINotes
clangBasic
LLVM_COMPONENT_DEPENDS ${LLVM_TARGETS_TO_BUILD}
LLVM_LINK_COMPONENTS ${LLVM_TARGETS_TO_BUILD}
bitreader
bitwriter
coverage
Expand Down
2 changes: 1 addition & 1 deletion tools/SourceKit/tools/complete-test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ endif()
add_sourcekit_executable(complete-test
complete-test.cpp
LINK_LIBS ${SOURCEKITD_TEST_LINK_LIBS}
LLVM_COMPONENT_DEPENDS support option coverage lto
LLVM_LINK_COMPONENTS support option coverage lto
)
if(SWIFT_NEED_EXPLICIT_LIBDISPATCH)
target_link_libraries(complete-test PRIVATE dispatch BlocksRuntime)
Expand Down
2 changes: 1 addition & 1 deletion tools/SourceKit/tools/sourcekitd-repl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if(HAVE_UNICODE_LIBEDIT)
add_sourcekit_executable(sourcekitd-repl
sourcekitd-repl.cpp
LINK_LIBS ${SOURCEKITD_REPL_LINK_LIBS} edit
LLVM_COMPONENT_DEPENDS support coverage lto
LLVM_LINK_COMPONENTS support coverage lto
)
if(SWIFT_NEED_EXPLICIT_LIBDISPATCH)
target_link_libraries(sourcekitd-repl PRIVATE dispatch BlocksRuntime)
Expand Down
2 changes: 1 addition & 1 deletion tools/SourceKit/tools/sourcekitd-test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ add_sourcekit_executable(sourcekitd-test
TestOptions.cpp
LINK_LIBS ${SOURCEKITD_TEST_LINK_LIBS} SourceKitSupport
clangRewrite clangLex clangBasic
LLVM_COMPONENT_DEPENDS core support option coverage lto
LLVM_LINK_COMPONENTS core support option coverage lto
)
if(SWIFT_NEED_EXPLICIT_LIBDISPATCH)
target_link_libraries(sourcekitd-test PRIVATE dispatch BlocksRuntime)
Expand Down
2 changes: 1 addition & 1 deletion tools/SourceKit/tools/sourcekitd/bin/InProc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ option(SOURCEKITD_BUILD_STATIC_INPROC
set(sourcekitdInProc_args
sourcekitdInProc.cpp
LINK_LIBS SourceKitSwiftLang sourcekitdAPI
LLVM_COMPONENT_DEPENDS support coverage
LLVM_LINK_COMPONENTS support coverage
)

if (SOURCEKIT_INSTALLING_INPROC)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ add_sourcekit_framework(sourcekitd
${public_headers}
sourcekitd.cpp
LINK_LIBS sourcekitdAPI
LLVM_COMPONENT_DEPENDS support
LLVM_LINK_COMPONENTS support
MODULEMAP module.modulemap
INSTALL_IN_COMPONENT sourcekit-xpc-service
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ if (NOT SOURCEKIT_INSTALLING_INPROC)
add_sourcekit_xpc_service(SourceKitService sourcekitd
XPCService.cpp
LINK_LIBS SourceKitSwiftLang sourcekitdAPI
LLVM_COMPONENT_DEPENDS support coverage
LLVM_LINK_COMPONENTS support coverage
)
endif()

Expand Down
2 changes: 1 addition & 1 deletion tools/swift-demangle-fuzzer/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
add_swift_fuzzer_host_tool(swift-demangle-fuzzer
swift-demangle-fuzzer.cpp
LLVM_COMPONENT_DEPENDS support
LLVM_LINK_COMPONENTS support
SWIFT_COMPONENT compiler
)
target_link_libraries(swift-demangle-fuzzer
Expand Down
2 changes: 1 addition & 1 deletion tools/swift-demangle-yamldump/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
add_swift_host_tool(swift-demangle-yamldump
swift-demangle-yamldump.cpp
LLVM_COMPONENT_DEPENDS support
LLVM_LINK_COMPONENTS support
SWIFT_COMPONENT tools
)
target_link_libraries(swift-demangle-yamldump
Expand Down
Loading