Files
clang-p2996/lldb/source/Expression/CMakeLists.txt
Michele Scandale 53880b8cb9 [CMake] Make intrinsics_gen dependency unconditional.
The `intrinsics_gen` target exists in the CMake exports since r309389
(see LLVMConfig.cmake.in), hence projects can depend on `intrinsics_gen`
even it they are built separately from LLVM.

Reviewed By: MaskRay, JDevlieghere

Differential Revision: https://reviews.llvm.org/D83454
2020-07-17 16:43:17 -07:00

34 lines
556 B
CMake

add_lldb_library(lldbExpression
DiagnosticManager.cpp
DWARFExpression.cpp
Expression.cpp
ExpressionVariable.cpp
FunctionCaller.cpp
IRExecutionUnit.cpp
IRInterpreter.cpp
IRMemoryMap.cpp
LLVMUserExpression.cpp
Materializer.cpp
REPL.cpp
UserExpression.cpp
UtilityFunction.cpp
DEPENDS
intrinsics_gen
LINK_LIBS
lldbCore
lldbHost
lldbInterpreter
lldbSymbol
lldbTarget
lldbUtility
lldbPluginCPlusPlusLanguage
lldbPluginObjectFileJIT
LINK_COMPONENTS
Core
ExecutionEngine
Support
)