67 lines · plain
1lldb_tablegen(CommandOptions.inc -gen-lldb-option-defs2 SOURCE Options.td3 TARGET LLDBOptionsGen)4 5add_lldb_library(lldbCommands NO_PLUGIN_DEPENDENCIES6 CommandCompletions.cpp7 CommandObjectApropos.cpp8 CommandObjectBreakpoint.cpp9 CommandObjectBreakpointCommand.cpp10 CommandObjectCommands.cpp11 CommandObjectDiagnostics.cpp12 CommandObjectDisassemble.cpp13 CommandObjectDWIMPrint.cpp14 CommandObjectExpression.cpp15 CommandObjectFrame.cpp16 CommandObjectGUI.cpp17 CommandObjectHelp.cpp18 CommandObjectLanguage.cpp19 CommandObjectLog.cpp20 CommandObjectMemory.cpp21 CommandObjectMemoryTag.cpp22 CommandObjectMultiword.cpp23 CommandObjectPlatform.cpp24 CommandObjectPlugin.cpp25 CommandObjectProcess.cpp26 CommandObjectProtocolServer.cpp27 CommandObjectQuit.cpp28 CommandObjectRegexCommand.cpp29 CommandObjectRegister.cpp30 CommandObjectScripting.cpp31 CommandObjectSession.cpp32 CommandObjectSettings.cpp33 CommandObjectSource.cpp34 CommandObjectStats.cpp35 CommandObjectTarget.cpp36 CommandObjectThread.cpp37 CommandObjectThreadUtil.cpp38 CommandObjectTrace.cpp39 CommandObjectType.cpp40 CommandObjectVersion.cpp41 CommandObjectWatchpoint.cpp42 CommandObjectWatchpointCommand.cpp43 CommandOptionArgumentTable.cpp44 CommandOptionsProcessAttach.cpp45 CommandOptionsProcessLaunch.cpp46 47 LINK_COMPONENTS48 Support49 LINK_LIBS50 lldbBreakpoint51 lldbCore52 lldbDataFormatters53 lldbExpression54 lldbHost55 lldbInterpreter56 lldbSymbol57 lldbTarget58 lldbUtility59 lldbValueObject60 lldbVersion61 CLANG_LIBS62 clangFrontend63 clangSerialization64 )65 66add_dependencies(lldbCommands LLDBOptionsGen)67