[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / unittests / ExecutionEngine / Orc / CMakeLists.txt
blob79c16cbe0597ebd8b37b946922e86bae111b664c
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   ExecutionSessionWrapperFunctionCallsTest.cpp
20   EPCGenericMemoryAccessTest.cpp
21   IndirectionUtilsTest.cpp
22   JITTargetMachineBuilderTest.cpp
23   LazyCallThroughAndReexportsTest.cpp
24   LookupAndRecordAddrsTest.cpp
25   ObjectLinkingLayerTest.cpp
26   OrcCAPITest.cpp
27   OrcTestCommon.cpp
28   QueueChannel.cpp
29   ResourceTrackerTest.cpp
30   RPCUtilsTest.cpp
31   RTDyldObjectLinkingLayerTest.cpp
32   SimplePackedSerializationTest.cpp
33   SymbolStringPoolTest.cpp
34   ThreadSafeModuleTest.cpp
35   WrapperFunctionUtilsTest.cpp
36   )
38 target_link_libraries(OrcJITTests PRIVATE
39                         LLVMTestingSupport
40                         ${ORC_JIT_TEST_LIBS})