summaryrefslogtreecommitdiff
path: root/unittests/MC/CMakeLists.txt
blob: 95a3fff2b529afe9247e44e2728531315116fad9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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()