mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-25 00:33:15 +00:00
38d3e4d5d8
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@221210 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()
|