04eabf0b9eeb7526a45fbc224f208d77e628359c
[oota-llvm.git] / unittests / VMCore / CMakeLists.txt
1 set(LLVM_LINK_COMPONENTS
2   asmparser
3   analysis
4   core
5   ipa
6   target
7   )
8
9 set(VMCoreSources
10   ConstantsTest.cpp
11   DominatorTreeTest.cpp
12   InstructionsTest.cpp
13   MetadataTest.cpp
14   PassManagerTest.cpp
15   ValueMapTest.cpp
16   VerifierTest.cpp
17   )
18
19 # MSVC9 and 8 cannot compile ValueMapTest.cpp due to their bug.
20 # See issue#331418 in Visual Studio.
21 if(MSVC AND MSVC_VERSION LESS 1600)
22   list(REMOVE_ITEM VMCoreSources ValueMapTest.cpp)
23 endif()
24
25 add_llvm_unittest(VMCoreTests
26   ${VMCoreSources}
27   )