blob: 836a844b710dbbf7ce7c99e0f63ea2c4cb62c91e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
set(LLVM_LINK_COMPONENTS
Analysis
Core
FrontendHLSL
FrontendOffloading
FrontendOpenACC
FrontendOpenMP
Passes
Support
TargetParser
TransformUtils
)
add_llvm_unittest(LLVMFrontendTests
HLSLBindingTest.cpp
HLSLRootSignatureDumpTest.cpp
OpenACCTest.cpp
OpenMPContextTest.cpp
OpenMPIRBuilderTest.cpp
OpenMPParsingTest.cpp
OpenMPCompositionTest.cpp
OpenMPDecompositionTest.cpp
OpenMPDirectiveNameTest.cpp
OpenMPDirectiveNameParserTest.cpp
PropertySetRegistryTest.cpp
DEPENDS
acc_gen
omp_gen
)
target_link_libraries(LLVMFrontendTests PRIVATE LLVMTestingSupport)
|