CMakeLists.txt 711 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. set(LLVM_LINK_COMPONENTS
  2. Support
  3. )
  4. add_clang_library(clangARCMigrate
  5. ARCMT.cpp
  6. ARCMTActions.cpp
  7. FileRemapper.cpp
  8. ObjCMT.cpp
  9. PlistReporter.cpp
  10. TransAPIUses.cpp
  11. TransARCAssign.cpp
  12. TransAutoreleasePool.cpp
  13. TransBlockObjCVariable.cpp
  14. TransEmptyStatementsAndDealloc.cpp
  15. TransGCAttrs.cpp
  16. TransGCCalls.cpp
  17. TransProperties.cpp
  18. TransProtectedScope.cpp
  19. TransRetainReleaseDealloc.cpp
  20. TransUnbridgedCasts.cpp
  21. TransUnusedInitDelegate.cpp
  22. TransZeroOutPropsInDealloc.cpp
  23. TransformActions.cpp
  24. Transforms.cpp
  25. LINK_LIBS
  26. clangAST
  27. clangAnalysis
  28. clangBasic
  29. clangEdit
  30. clangFrontend
  31. clangLex
  32. clangRewrite
  33. clangSema
  34. clangSerialization
  35. clangStaticAnalyzerCheckers
  36. )