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 ) | 5 ) |
6 | 6 |
7 add_llvm_executable(translation_unit | 7 add_llvm_executable(refactor_message_loop |
8 TranslationUnitGenerator.cpp | 8 RefactorMessageLoop.cpp |
dcheng
2015/05/26 20:35:44
Nit: two spaces
| |
9 ) | 9 ) |
10 | 10 |
11 target_link_libraries(translation_unit | 11 target_link_libraries(refactor_message_loop |
12 clangAST | 12 clangAST |
13 clangASTMatchers | 13 clangASTMatchers |
14 clangAnalysis | 14 clangAnalysis |
15 clangBasic | 15 clangBasic |
16 clangDriver | 16 clangDriver |
17 clangEdit | 17 clangEdit |
18 clangFrontend | 18 clangFrontend |
19 clangLex | 19 clangLex |
20 clangParse | 20 clangParse |
21 clangSema | 21 clangSema |
22 clangSerialization | 22 clangSerialization |
23 clangTooling | 23 clangTooling |
24 ) | 24 ) |
25 | 25 |
26 cr_install(TARGETS translation_unit RUNTIME DESTINATION bin) | 26 cr_install(TARGETS refactor_message_loop RUNTIME DESTINATION bin) |
OLD | NEW |