[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / examples / OrcV2Examples / LLJITWithGDBRegistrationListener / CMakeLists.txt
blob12fe6346ea4e79673da3b46141d1ee9dd237c895
1 set(LLVM_LINK_COMPONENTS
2   Core
3   ExecutionEngine
4   IRReader
5   JITLink
6   OrcJIT
7   OrcTargetProcess
8   Support
9   nativecodegen
10   )
12 add_llvm_example(LLJITWithGDBRegistrationListener
13   LLJITWithGDBRegistrationListener.cpp
14   )
16 # We want JIT'd code to be able to link against process symbols like printf
17 # for this example, so make sure they're exported.
18 export_executable_symbols(LLJITWithGDBRegistrationListener)