File tree 3 files changed +12
-0
lines changed
3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -80,3 +80,7 @@ add_lldb_library(lldbCore
80
80
# Needed to properly resolve references in a debug build.
81
81
# TODO: Remove once we have better layering
82
82
set_target_properties (lldbCore PROPERTIES LINK_INTERFACE_MULTIPLICITY 4)
83
+
84
+ if (NOT LLDB_DISABLE_LIBEDIT)
85
+ target_include_directories (lldbCore PRIVATE ${libedit_INCLUDE_DIRS} )
86
+ endif ()
Original file line number Diff line number Diff line change @@ -174,3 +174,7 @@ add_lldb_library(lldbHost
174
174
Object
175
175
Support
176
176
)
177
+
178
+ if (NOT LLDB_DISABLE_LIBEDIT)
179
+ target_include_directories (lldbHost PUBLIC ${libedit_INCLUDE_DIRS} )
180
+ endif ()
Original file line number Diff line number Diff line change @@ -55,3 +55,7 @@ add_lldb_library(lldbInterpreter
55
55
LINK_COMPONENTS
56
56
Support
57
57
)
58
+
59
+ if (NOT LLDB_DISABLE_LIBEDIT)
60
+ target_include_directories (lldbInterpreter PRIVATE ${libedit_INCLUDE_DIRS} )
61
+ endif ()
You can’t perform that action at this time.
0 commit comments