| OLD | NEW |
| 1 set(LLVM_LINK_COMPONENTS | 1 set(LLVM_LINK_COMPONENTS |
| 2 BitReader | 2 BitReader |
| 3 MCParser | 3 MCParser |
| 4 Option | 4 Option |
| 5 X86AsmParser | 5 X86AsmParser |
| 6 X86CodeGen |
| 6 ) | 7 ) |
| 7 | 8 |
| 8 add_llvm_executable(rewrite_scoped_refptr | 9 add_llvm_executable(rewrite_scoped_refptr |
| 9 RewriteScopedRefptr.cpp | 10 RewriteScopedRefptr.cpp |
| 10 ) | 11 ) |
| 11 | 12 |
| 12 target_link_libraries(rewrite_scoped_refptr | 13 target_link_libraries(rewrite_scoped_refptr |
| 13 clangAST | 14 clangAST |
| 14 clangASTMatchers | 15 clangASTMatchers |
| 15 clangAnalysis | 16 clangAnalysis |
| 16 clangBasic | 17 clangBasic |
| 17 clangDriver | 18 clangDriver |
| 18 clangEdit | 19 clangEdit |
| 19 clangFrontend | 20 clangFrontend |
| 20 clangLex | 21 clangLex |
| 21 clangParse | 22 clangParse |
| 22 clangSema | 23 clangSema |
| 23 clangSerialization | 24 clangSerialization |
| 24 clangTooling | 25 clangTooling |
| 25 ) | 26 ) |
| 26 | 27 |
| 27 cr_install(TARGETS rewrite_scoped_refptr RUNTIME DESTINATION bin) | 28 cr_install(TARGETS rewrite_scoped_refptr RUNTIME DESTINATION bin) |
| OLD | NEW |