[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git] / lldb / source / Commands / CMakeLists.txt
blob28cbb2cd6cf64f87cf02986f78defb2698aaec66
1 lldb_tablegen(CommandOptions.inc -gen-lldb-option-defs
2   SOURCE Options.td
3   TARGET LLDBOptionsGen)
5 add_lldb_library(lldbCommands
6   CommandCompletions.cpp
7   CommandObjectApropos.cpp
8   CommandObjectBreakpoint.cpp
9   CommandObjectBreakpointCommand.cpp
10   CommandObjectCommands.cpp
11   CommandObjectDisassemble.cpp
12   CommandObjectExpression.cpp
13   CommandObjectFrame.cpp
14   CommandObjectGUI.cpp
15   CommandObjectHelp.cpp
16   CommandObjectLog.cpp
17   CommandObjectMemory.cpp
18   CommandObjectMultiword.cpp
19   CommandObjectPlatform.cpp
20   CommandObjectPlugin.cpp
21   CommandObjectProcess.cpp
22   CommandObjectQuit.cpp
23   CommandObjectRegister.cpp
24   CommandObjectReproducer.cpp
25   CommandObjectSettings.cpp
26   CommandObjectSource.cpp
27   CommandObjectStats.cpp
28   CommandObjectTarget.cpp
29   CommandObjectThread.cpp
30   CommandObjectType.cpp
31   CommandObjectVersion.cpp
32   CommandObjectWatchpoint.cpp
33   CommandObjectWatchpointCommand.cpp
34   CommandObjectLanguage.cpp
36   LINK_LIBS
37     lldbBase
38     lldbBreakpoint
39     lldbCore
40     lldbDataFormatters
41     lldbExpression
42     lldbHost
43     lldbInterpreter
44     lldbSymbol
45     lldbTarget
46     lldbUtility
48   LINK_COMPONENTS
49     Support
50   )
52 add_dependencies(lldbCommands LLDBOptionsGen)