blob: ecdff2823d47a32913a54e963affe50ef32f354d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
lldb_tablegen(JITLoaderGDBProperties.inc -gen-lldb-property-defs
SOURCE JITLoaderGDBProperties.td
TARGET LLDBPluginJITLoaderGDBPropertiesGen)
lldb_tablegen(JITLoaderGDBPropertiesEnum.inc -gen-lldb-property-enum-defs
SOURCE JITLoaderGDBProperties.td
TARGET LLDBPluginJITLoaderGDBPropertiesEnumGen)
add_lldb_library(lldbPluginJITLoaderGDB PLUGIN
JITLoaderGDB.cpp
LINK_LIBS
lldbBreakpoint
lldbCore
lldbInterpreter
lldbSymbol
lldbTarget
lldbUtility
lldbPluginObjectFileMachO
LINK_COMPONENTS
Support
)
add_dependencies(lldbPluginJITLoaderGDB
LLDBPluginJITLoaderGDBPropertiesGen
LLDBPluginJITLoaderGDBPropertiesEnumGen)
|