1set(LLVM_USED_LIBS clangBasic clangAST clangParse clangFrontend clangRewrite) 2 3add_clang_library(clangARCMigrate 4 ARCMT.cpp 5 ARCMTActions.cpp 6 FileRemapper.cpp 7 ObjCMT.cpp 8 PlistReporter.cpp 9 TransAPIUses.cpp 10 TransARCAssign.cpp 11 TransAutoreleasePool.cpp 12 TransBlockObjCVariable.cpp 13 TransEmptyStatementsAndDealloc.cpp 14 TransformActions.cpp 15 Transforms.cpp 16 TransGCAttrs.cpp 17 TransGCCalls.cpp 18 TransProperties.cpp 19 TransRetainReleaseDealloc.cpp 20 TransUnbridgedCasts.cpp 21 TransUnusedInitDelegate.cpp 22 TransZeroOutPropsInDealloc.cpp 23 ) 24 25add_dependencies(clangARCMigrate 26 ClangAttrClasses 27 ClangAttrList 28 ClangDeclNodes 29 ClangStmtNodes) 30