[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang-tools-extra / clang-move / CMakeLists.txt
blobe8aeaedd61d4ddb8a001e04654cfdc8844822b86
1 set(LLVM_LINK_COMPONENTS
2   support
3   FrontendOpenMP
4   )
6 add_clang_library(clangMove
7   Move.cpp
8   HelperDeclRefGraph.cpp
10   DEPENDS
11   omp_gen
12   ClangDriverOptions
13   )
15 clang_target_link_libraries(clangMove
16   PRIVATE
17   clangAnalysis
18   clangAST
19   clangASTMatchers
20   clangBasic
21   clangFormat
22   clangFrontend
23   clangLex
24   clangSerialization
25   clangTooling
26   clangToolingCore
27   )
29 add_subdirectory(tool)