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 X86CodeGen |
7 ) | 7 ) |
8 | 8 |
9 add_llvm_executable(rewrite_to_chrome_style | 9 add_llvm_executable(rewrite_to_chrome_style |
10 Renamer.cpp | |
10 RewriteToChromeStyle.cpp | 11 RewriteToChromeStyle.cpp |
11 ) | 12 ) |
12 | 13 |
13 target_link_libraries(rewrite_to_chrome_style | 14 target_link_libraries(rewrite_to_chrome_style |
14 clangAST | 15 clangAST |
15 clangASTMatchers | 16 clangASTMatchers |
16 clangAnalysis | 17 clangAnalysis |
17 clangBasic | 18 clangBasic |
18 clangDriver | 19 clangDriver |
19 clangEdit | 20 clangEdit |
20 clangFrontend | 21 clangFrontend |
21 clangLex | 22 clangLex |
22 clangParse | 23 clangParse |
23 clangSema | 24 clangSema |
24 clangSerialization | 25 clangSerialization |
25 clangTooling | 26 clangTooling |
26 ) | 27 ) |
27 | 28 |
28 cr_install(TARGETS rewrite_to_chrome_style RUNTIME DESTINATION bin) | 29 cr_install(TARGETS rewrite_to_chrome_style RUNTIME DESTINATION bin) |
OLD | NEW |