Chromium Code Reviews| Index: tools/clang/move_raw/CMakeLists.txt |
| diff --git a/tools/clang/move_raw/CMakeLists.txt b/tools/clang/move_raw/CMakeLists.txt |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..3375a5818c53bd81636de1b640350d3dfbf61983 |
| --- /dev/null |
| +++ b/tools/clang/move_raw/CMakeLists.txt |
| @@ -0,0 +1,28 @@ |
| +set(LLVM_LINK_COMPONENTS |
| + BitReader |
| + MCParser |
| + Option |
| + X86AsmParser |
| + X86CodeGen |
| + ) |
| + |
| +add_llvm_executable(move_raw |
| + MoveRaw.cpp |
| + ) |
| + |
| +target_link_libraries(move_raw |
| + clangAST |
| + clangASTMatchers |
| + clangAnalysis |
| + clangBasic |
| + clangDriver |
| + clangEdit |
| + clangFrontend |
| + clangLex |
| + clangParse |
| + clangSema |
| + clangSerialization |
| + clangTooling |
| + ) |
| + |
| +cr_install(TARGETS move_raw RUNTIME DESTINATION bin) |