llvm-6502/unittests/MC/CMakeLists.txt
2014-11-04 00:14:36 +00:00

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()