1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00
llvm-mirror/unittests/tools/CMakeLists.txt
Clement Courbet e9da1f048c [llvm-exegesis] Run unit tests on more platforms.
Summary:
 - Target-independent tests are run all the time.
 - Tests that codegen X86 code are run when X86 is in build targets.
 - Tests that run X86 jitted code are run only on X86 hosts.

Reviewers: gchatelet

Subscribers: mgorny, llvm-commits, tschuett

Differential Revision: https://reviews.llvm.org/D45614

llvm-svn: 330008
2018-04-13 12:20:30 +00:00

11 lines
130 B
CMake

if(LLVM_TARGETS_TO_BUILD MATCHES "X86")
add_subdirectory(
llvm-cfi-verify
)
endif()
add_subdirectory(
llvm-exegesis
)