[docs] Fix build-docs.sh
[llvm-project.git] / llvm / unittests / ExecutionEngine / Orc / CMakeLists.txt
blobd762aff66f4de23cad43071022826a3a69821eee
2 set(LLVM_LINK_COMPONENTS
3   Core
4   ExecutionEngine
5   IRReader
6   JITLink
7   Object
8   OrcJIT
9   OrcShared
10   OrcTargetProcess
11   Passes
12   RuntimeDyld
13   Support
14   native
15   )
17 add_llvm_unittest(OrcJITTests
18   CoreAPIsTest.cpp
19   ExecutorAddressTest.cpp
20   ExecutionSessionWrapperFunctionCallsTest.cpp
21   EPCGenericJITLinkMemoryManagerTest.cpp
22   EPCGenericMemoryAccessTest.cpp
23   IndirectionUtilsTest.cpp
24   JITTargetMachineBuilderTest.cpp
25   LazyCallThroughAndReexportsTest.cpp
26   LookupAndRecordAddrsTest.cpp
27   MapperJITLinkMemoryManagerTest.cpp
28   MemoryMapperTest.cpp
29   ObjectLinkingLayerTest.cpp
30   OrcCAPITest.cpp
31   OrcTestCommon.cpp
32   ResourceTrackerTest.cpp
33   RTDyldObjectLinkingLayerTest.cpp
34   SharedMemoryMapperTest.cpp
35   SimpleExecutorMemoryManagerTest.cpp
36   SimplePackedSerializationTest.cpp
37   SymbolStringPoolTest.cpp
38   TaskDispatchTest.cpp
39   ThreadSafeModuleTest.cpp
40   WrapperFunctionUtilsTest.cpp
41   )
43 target_link_libraries(OrcJITTests PRIVATE
44                         LLVMTestingSupport
45                         ${ORC_JIT_TEST_LIBS})
47 set_property(TARGET OrcJITTests PROPERTY FOLDER "Tests/UnitTests/ExecutionTests")