Files
clang-p2996/lldb/source/Plugins/ExpressionParser/Clang/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

62 lines
1.2 KiB
CMake

add_lldb_library(lldbPluginExpressionParserClang
ASTResultSynthesizer.cpp
ASTStructExtractor.cpp
ASTUtils.cpp
ClangASTImporter.cpp
ClangASTMetadata.cpp
ClangASTSource.cpp
ClangDeclVendor.cpp
ClangExpressionDeclMap.cpp
ClangExpressionParser.cpp
ClangExpressionSourceCode.cpp
ClangExpressionVariable.cpp
ClangExternalASTSourceCallbacks.cpp
ClangFunctionCaller.cpp
ClangHost.cpp
ClangModulesDeclVendor.cpp
ClangPersistentVariables.cpp
ClangUserExpression.cpp
ClangUtil.cpp
ClangUtilityFunction.cpp
CppModuleConfiguration.cpp
CxxModuleHandler.cpp
IRForTarget.cpp
IRDynamicChecks.cpp
NameSearchContext.cpp
DEPENDS
intrinsics_gen
LINK_LIBS
lldbCore
lldbExpression
lldbHost
lldbInterpreter
lldbSymbol
lldbTarget
lldbUtility
lldbPluginCPlusPlusLanguage
lldbPluginCPPRuntime
lldbPluginObjCRuntime
lldbPluginRenderScriptRuntime
lldbPluginTypeSystemClang
CLANG_LIBS
clangAST
clangCodeGen
clangDriver
clangEdit
clangFrontend
clangLex
clangParse
clangRewrite
clangRewriteFrontend
clangSema
clangSerialization
LINK_COMPONENTS
Core
ExecutionEngine
ipo
MCJIT
Support
)