[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / examples / Bye / CMakeLists.txt
blobbb96edb4b4bf5eec47483fce57eebe7b61e4bf6c
1 if(LLVM_BYE_LINK_INTO_TOOLS)
2   message(WARNING "Setting LLVM_BYE_LINK_INTO_TOOLS=ON only makes sense for testing purpose")
3 endif()
5 # The plugin expects to not link against the Support and Core libraries,
6 # but expects them to exist in the process loading the plugin. This doesn't
7 # work with DLLs on Windows (where a shared library can't have undefined
8 # references), so just skip this example on Windows.
9 if (NOT WIN32)
10   add_llvm_pass_plugin(Bye
11     Bye.cpp
12     DEPENDS
13     intrinsics_gen
14     BUILDTREE_ONLY
15    )
17   install(TARGETS ${name} RUNTIME DESTINATION examples)
18   set_target_properties(${name} PROPERTIES FOLDER "Examples")
19 endif()