34 lines · plain
1set(LLVM_LINK_COMPONENTS2 Analysis3 BinaryFormat4 Core5 FrontendHLSL6 FrontendOffloading7 FrontendOpenACC8 FrontendOpenMP9 Passes10 Support11 TargetParser12 TransformUtils13 )14 15add_llvm_unittest(LLVMFrontendTests16 HLSLBindingTest.cpp17 HLSLRootSignatureDumpTest.cpp18 OpenACCTest.cpp19 OpenMPContextTest.cpp20 OpenMPIRBuilderTest.cpp21 OpenMPParsingTest.cpp22 OpenMPCompositionTest.cpp23 OpenMPDecompositionTest.cpp24 OpenMPDirectiveNameTest.cpp25 OpenMPDirectiveNameParserTest.cpp26 PropertySetRegistryTest.cpp27 28 DEPENDS29 acc_gen30 omp_gen31 )32 33target_link_libraries(LLVMFrontendTests PRIVATE LLVMTestingSupport)34