mirror of
https://github.com/jeremysrand/llvm-65816.git
synced 2024-11-19 14:33:33 +00:00
53 lines
1.0 KiB
CMake
53 lines
1.0 KiB
CMake
set(LLVM_LINK_COMPONENTS
|
|
Support
|
|
)
|
|
|
|
set(ADTSources
|
|
APFloatTest.cpp
|
|
APIntTest.cpp
|
|
BitVectorTest.cpp
|
|
DAGDeltaAlgorithmTest.cpp
|
|
DeltaAlgorithmTest.cpp
|
|
DenseMapTest.cpp
|
|
DenseSetTest.cpp
|
|
FoldingSet.cpp
|
|
HashingTest.cpp
|
|
ilistTest.cpp
|
|
ImmutableMapTest.cpp
|
|
ImmutableSetTest.cpp
|
|
IntEqClassesTest.cpp
|
|
IntervalMapTest.cpp
|
|
IntrusiveRefCntPtrTest.cpp
|
|
MapVectorTest.cpp
|
|
OptionalTest.cpp
|
|
PackedVectorTest.cpp
|
|
PointerUnionTest.cpp
|
|
SCCIteratorTest.cpp
|
|
SmallPtrSetTest.cpp
|
|
SmallStringTest.cpp
|
|
SmallVectorTest.cpp
|
|
SparseBitVectorTest.cpp
|
|
SparseMultiSetTest.cpp
|
|
SparseSetTest.cpp
|
|
StringMapTest.cpp
|
|
StringRefTest.cpp
|
|
TinyPtrVectorTest.cpp
|
|
TripleTest.cpp
|
|
TwineTest.cpp
|
|
VariadicFunctionTest.cpp
|
|
polymorphic_ptr_test.cpp
|
|
)
|
|
|
|
# They cannot be compiled on MSVC9 due to its bug.
|
|
if(MSVC AND MSVC_VERSION LESS 1600)
|
|
set(LLVM_OPTIONAL_SOURCES
|
|
DenseMapTest.cpp
|
|
SmallVectorTest.cpp
|
|
)
|
|
list(REMOVE_ITEM ADTSources ${LLVM_OPTIONAL_SOURCES})
|
|
endif()
|
|
|
|
add_llvm_unittest(ADTTests
|
|
${ADTSources}
|
|
)
|