2019-07-30 01:22:10 +08:00
|
|
|
lldb_tablegen(InterpreterProperties.inc -gen-lldb-property-defs
|
|
|
|
SOURCE InterpreterProperties.td
|
2019-07-27 02:14:04 +08:00
|
|
|
TARGET LLDBInterpreterPropertiesGen)
|
|
|
|
|
2019-07-30 01:22:10 +08:00
|
|
|
lldb_tablegen(InterpreterPropertiesEnum.inc -gen-lldb-property-enum-defs
|
|
|
|
SOURCE InterpreterProperties.td
|
2019-07-27 02:14:04 +08:00
|
|
|
TARGET LLDBInterpreterPropertiesEnumGen)
|
|
|
|
|
2013-09-25 18:37:32 +08:00
|
|
|
add_lldb_library(lldbInterpreter
|
2016-03-09 05:29:49 +08:00
|
|
|
CommandAlias.cpp
|
2013-09-25 18:37:32 +08:00
|
|
|
CommandHistory.cpp
|
|
|
|
CommandInterpreter.cpp
|
|
|
|
CommandObject.cpp
|
2014-07-10 00:31:49 +08:00
|
|
|
CommandOptionValidators.cpp
|
2013-09-25 18:37:32 +08:00
|
|
|
CommandReturnObject.cpp
|
2018-04-10 17:03:59 +08:00
|
|
|
OptionArgParser.cpp
|
2013-09-25 18:37:32 +08:00
|
|
|
OptionGroupArchitecture.cpp
|
|
|
|
OptionGroupBoolean.cpp
|
|
|
|
OptionGroupFile.cpp
|
|
|
|
OptionGroupFormat.cpp
|
2019-10-04 06:18:51 +08:00
|
|
|
OptionGroupPythonClassWithDict.cpp
|
2013-09-25 18:37:32 +08:00
|
|
|
OptionGroupOutputFile.cpp
|
|
|
|
OptionGroupPlatform.cpp
|
|
|
|
OptionGroupString.cpp
|
|
|
|
OptionGroupUInt64.cpp
|
|
|
|
OptionGroupUUID.cpp
|
|
|
|
OptionGroupValueObjectDisplay.cpp
|
|
|
|
OptionValue.cpp
|
|
|
|
OptionValueArch.cpp
|
|
|
|
OptionValueArgs.cpp
|
|
|
|
OptionValueArray.cpp
|
|
|
|
OptionValueBoolean.cpp
|
2015-01-13 04:44:02 +08:00
|
|
|
OptionValueChar.cpp
|
2013-09-25 18:37:32 +08:00
|
|
|
OptionValueDictionary.cpp
|
|
|
|
OptionValueEnumeration.cpp
|
2020-07-17 02:34:50 +08:00
|
|
|
OptionValueFileColonLine.cpp
|
2013-09-25 18:37:32 +08:00
|
|
|
OptionValueFileSpec.cpp
|
2019-08-23 04:10:24 +08:00
|
|
|
OptionValueFileSpecList.cpp
|
2013-09-25 18:37:32 +08:00
|
|
|
OptionValueFormat.cpp
|
2015-02-05 06:46:17 +08:00
|
|
|
OptionValueFormatEntity.cpp
|
2015-02-21 03:54:06 +08:00
|
|
|
OptionValueLanguage.cpp
|
2013-09-25 18:37:32 +08:00
|
|
|
OptionValuePathMappings.cpp
|
|
|
|
OptionValueProperties.cpp
|
|
|
|
OptionValueRegex.cpp
|
|
|
|
OptionValueSInt64.cpp
|
|
|
|
OptionValueString.cpp
|
|
|
|
OptionValueUInt64.cpp
|
|
|
|
OptionValueUUID.cpp
|
|
|
|
OptionGroupVariable.cpp
|
|
|
|
OptionGroupWatchpoint.cpp
|
|
|
|
Options.cpp
|
|
|
|
Property.cpp
|
|
|
|
ScriptInterpreter.cpp
|
2017-02-01 04:43:05 +08:00
|
|
|
|
|
|
|
LINK_LIBS
|
|
|
|
lldbCommands
|
|
|
|
lldbCore
|
|
|
|
lldbDataFormatters
|
|
|
|
lldbHost
|
|
|
|
lldbTarget
|
|
|
|
lldbUtility
|
|
|
|
|
|
|
|
LINK_COMPONENTS
|
|
|
|
Support
|
2013-09-25 18:37:32 +08:00
|
|
|
)
|
2018-09-22 02:34:41 +08:00
|
|
|
|
2019-07-27 02:14:04 +08:00
|
|
|
add_dependencies(lldbInterpreter
|
|
|
|
LLDBInterpreterPropertiesGen
|
|
|
|
LLDBInterpreterPropertiesEnumGen)
|
2019-07-26 06:56:59 +08:00
|
|
|
|
2019-12-13 01:22:34 +08:00
|
|
|
if (LLDB_ENABLE_LIBEDIT)
|
2020-01-03 05:31:32 +08:00
|
|
|
target_include_directories(lldbInterpreter PRIVATE ${LibEdit_INCLUDE_DIRS})
|
2019-07-30 01:22:10 +08:00
|
|
|
endif()
|