1lldb_tablegen(CommandOptions.inc -gen-lldb-option-defs 2 SOURCE Options.td 3 TARGET LLDBOptionsGen) 4 5add_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 35 36 LINK_LIBS 37 lldbBase 38 lldbBreakpoint 39 lldbCore 40 lldbDataFormatters 41 lldbExpression 42 lldbHost 43 lldbInterpreter 44 lldbSymbol 45 lldbTarget 46 lldbUtility 47 48 LINK_COMPONENTS 49 Support 50 ) 51 52add_dependencies(lldbCommands LLDBOptionsGen) 53