[LoongArch][Clang] Make the parameters and return value of {x,}vorn.v builti ns ...
[llvm-project.git] / lldb / source / Commands / CMakeLists.txt
blob71339ccd3a6ec5fc2f4228330029b297f5551b1e
1 lldb_tablegen(CommandOptions.inc -gen-lldb-option-defs
2   SOURCE Options.td
3   TARGET LLDBOptionsGen)
5 add_lldb_library(lldbCommands NO_PLUGIN_DEPENDENCIES
6   CommandCompletions.cpp
7   CommandObjectApropos.cpp
8   CommandObjectBreakpoint.cpp
9   CommandObjectBreakpointCommand.cpp
10   CommandObjectCommands.cpp
11   CommandObjectDiagnostics.cpp
12   CommandObjectDisassemble.cpp
13   CommandObjectDWIMPrint.cpp
14   CommandObjectExpression.cpp
15   CommandObjectFrame.cpp
16   CommandObjectGUI.cpp
17   CommandObjectHelp.cpp
18   CommandObjectLanguage.cpp
19   CommandObjectLog.cpp
20   CommandObjectMemory.cpp
21   CommandObjectMemoryTag.cpp
22   CommandObjectMultiword.cpp
23   CommandObjectPlatform.cpp
24   CommandObjectPlugin.cpp
25   CommandObjectProcess.cpp
26   CommandObjectQuit.cpp
27   CommandObjectRegexCommand.cpp
28   CommandObjectRegister.cpp
29   CommandObjectScripting.cpp
30   CommandObjectSession.cpp
31   CommandObjectSettings.cpp
32   CommandObjectSource.cpp
33   CommandObjectStats.cpp
34   CommandObjectTarget.cpp
35   CommandObjectThread.cpp
36   CommandObjectThreadUtil.cpp
37   CommandObjectTrace.cpp
38   CommandObjectType.cpp
39   CommandObjectVersion.cpp
40   CommandObjectWatchpoint.cpp
41   CommandObjectWatchpointCommand.cpp
42   CommandOptionArgumentTable.cpp
43   CommandOptionsProcessAttach.cpp
44   CommandOptionsProcessLaunch.cpp
46   LINK_LIBS
47     lldbBreakpoint
48     lldbCore
49     lldbDataFormatters
50     lldbExpression
51     lldbHost
52     lldbInterpreter
53     lldbSymbol
54     lldbTarget
55     lldbUtility
56     lldbValueObject
57     lldbVersion
59   LINK_COMPONENTS
60     Support
61   )
63 add_dependencies(lldbCommands LLDBOptionsGen)