[DAG] Fix typo in VSELECT SimplifyDemandedVectorElts handling. NFC.
[llvm-project.git] / lldb / source / Commands / CMakeLists.txt
blob6a36c5376d5c574e524a4fd2871233992485eae0
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   CommandObjectScript.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     lldbVersion
58   LINK_COMPONENTS
59     Support
60   )
62 add_dependencies(lldbCommands LLDBOptionsGen)