forked from OSchip/llvm-project
39 lines
711 B
CMake
39 lines
711 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Support
|
|
)
|
|
|
|
add_clang_library(clangARCMigrate
|
|
ARCMT.cpp
|
|
ARCMTActions.cpp
|
|
FileRemapper.cpp
|
|
ObjCMT.cpp
|
|
PlistReporter.cpp
|
|
TransAPIUses.cpp
|
|
TransARCAssign.cpp
|
|
TransAutoreleasePool.cpp
|
|
TransBlockObjCVariable.cpp
|
|
TransEmptyStatementsAndDealloc.cpp
|
|
TransGCAttrs.cpp
|
|
TransGCCalls.cpp
|
|
TransProperties.cpp
|
|
TransProtectedScope.cpp
|
|
TransRetainReleaseDealloc.cpp
|
|
TransUnbridgedCasts.cpp
|
|
TransUnusedInitDelegate.cpp
|
|
TransZeroOutPropsInDealloc.cpp
|
|
TransformActions.cpp
|
|
Transforms.cpp
|
|
|
|
LINK_LIBS
|
|
clangAST
|
|
clangAnalysis
|
|
clangBasic
|
|
clangEdit
|
|
clangFrontend
|
|
clangLex
|
|
clangRewrite
|
|
clangSema
|
|
clangSerialization
|
|
clangStaticAnalyzerCheckers
|
|
)
|