[C++11] Add llvm::make_unique, according to N3656.
[oota-llvm.git] / unittests / ADT / CMakeLists.txt
1 set(LLVM_LINK_COMPONENTS
2   Support
3   )
4
5 set(ADTSources
6   APFloatTest.cpp
7   APIntTest.cpp
8   APSIntTest.cpp
9   ArrayRefTest.cpp
10   BitVectorTest.cpp
11   DAGDeltaAlgorithmTest.cpp
12   DeltaAlgorithmTest.cpp
13   DenseMapTest.cpp
14   DenseSetTest.cpp
15   FoldingSet.cpp
16   HashingTest.cpp
17   ilistTest.cpp
18   ImmutableMapTest.cpp
19   ImmutableSetTest.cpp
20   IntEqClassesTest.cpp
21   IntervalMapTest.cpp
22   IntrusiveRefCntPtrTest.cpp
23   MakeUniqueTest.cpp
24   MapVectorTest.cpp
25   OptionalTest.cpp
26   OwningPtrTest.cpp
27   PackedVectorTest.cpp
28   PointerIntPairTest.cpp
29   PointerUnionTest.cpp
30   SCCIteratorTest.cpp
31   SmallPtrSetTest.cpp
32   SmallStringTest.cpp
33   SmallVectorTest.cpp
34   SparseBitVectorTest.cpp
35   SparseMultiSetTest.cpp
36   SparseSetTest.cpp
37   StringMapTest.cpp
38   StringRefTest.cpp
39   TinyPtrVectorTest.cpp
40   TripleTest.cpp
41   TwineTest.cpp
42   VariadicFunctionTest.cpp
43   polymorphic_ptr_test.cpp
44  )
45
46 add_llvm_unittest(ADTTests
47   ${ADTSources}
48   )