mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-14 07:31:53 +00:00
f3379e7bdd
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@220479 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
305 B
CMake
16 lines
305 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
MC
|
|
Support
|
|
)
|
|
|
|
add_llvm_unittest(MCTests
|
|
StringTableBuilderTest.cpp
|
|
YAMLTest.cpp
|
|
)
|
|
|
|
foreach(t ${LLVM_TARGETS_TO_BUILD})
|
|
if (IS_DIRECTORY "${CMAKE_CURRENT_LIST_DIR}/${t}")
|
|
add_subdirectory(${t})
|
|
endif (IS_DIRECTORY "${CMAKE_CURRENT_LIST_DIR}/${t}")
|
|
endforeach()
|