mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-12 15:05:06 +00:00
36108ceabd
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@161297 91177308-0d34-0410-b5e6-96231b3b80d8
36 lines
733 B
CMake
36 lines
733 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
asmparser
|
|
core
|
|
ipa
|
|
)
|
|
|
|
set(VMCoreSources
|
|
ConstantsTest.cpp
|
|
DominatorTreeTest.cpp
|
|
IRBuilderTest.cpp
|
|
InstructionsTest.cpp
|
|
MDBuilderTest.cpp
|
|
MetadataTest.cpp
|
|
PassManagerTest.cpp
|
|
TypeBuilderTest.cpp
|
|
TypesTest.cpp
|
|
ValueMapTest.cpp
|
|
VerifierTest.cpp
|
|
)
|
|
|
|
# MSVC9 and 8 cannot compile ValueMapTest.cpp due to their bug.
|
|
# See issue#331418 in Visual Studio.
|
|
if(MSVC AND MSVC_VERSION LESS 1600)
|
|
list(REMOVE_ITEM VMCoreSources ValueMapTest.cpp)
|
|
endif()
|
|
|
|
# HACK: Declare a couple of source files as optionally compiled to satisfy the
|
|
# missing-file-checker in LLVM's weird CMake build.
|
|
set(LLVM_OPTIONAL_SOURCES
|
|
ValueMapTest.cpp
|
|
)
|
|
|
|
add_llvm_unittest(VMCoreTests
|
|
${VMCoreSources}
|
|
)
|