[clangd] Re-land "support outgoing calls in call hierarchy" (#117673)
[llvm-project.git] / llvm / unittests / Passes / Plugins / CMakeLists.txt
blob9fd543db39c8e7776936c9de85514593442781f2
1 # The plugin expects to not link against the Support and Core libraries,
2 # but expects them to exist in the process loading the plugin. This doesn't
3 # work with DLLs on Windows (where a shared library can't have undefined
4 # references), so just skip this testcase on Windows.
5 if (NOT WIN32 AND NOT CYGWIN)
6   set(LLVM_LINK_COMPONENTS Support Passes Core AsmParser)
7   add_llvm_unittest(PluginsTests
8     PluginsTest.cpp
10     EXPORT_SYMBOLS
11     )
12   target_link_libraries(PluginsTests PRIVATE LLVMTestingSupport)
14   unset(LLVM_LINK_COMPONENTS)
15   add_subdirectory(TestPlugin)
16   add_subdirectory(DoublerPlugin)
17 endif()