[LoongArch][Clang] Make the parameters and return value of {x,}vorn.v builti ns ...
[llvm-project.git] / lldb / source / Initialization / CMakeLists.txt
blobc1a167826f76fde5ce8dea4328814581cbb999ec
1 if ( CMAKE_SYSTEM_NAME MATCHES "Linux|Android|FreeBSD|NetBSD" )
2   list(APPEND EXTRA_PLUGINS lldbPluginProcessPOSIX)
3 endif()
5 if ( CMAKE_SYSTEM_NAME MATCHES "Windows" )
6   list(APPEND EXTRA_PLUGINS lldbPluginProcessWindowsCommon)
7 endif ()
9 add_lldb_library(lldbInitialization
10   SystemInitializerCommon.cpp
11   SystemInitializer.cpp
12   SystemLifetimeManager.cpp
14   LINK_LIBS
15     lldbCore
16     lldbHost
17     lldbPluginProcessGDBRemote
18     ${EXTRA_PLUGINS}
19     ${LLDB_SYSTEM_LIBS}
20   LINK_COMPONENTS
21     Support
22   )