[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang-tools-extra / clang-reorder-fields / CMakeLists.txt
blobb82146a71158589c6b4faf26513b3de969915e85
1 set(LLVM_LINK_COMPONENTS
2   FrontendOpenMP
3   support
6 add_clang_library(clangReorderFields
7   ReorderFieldsAction.cpp
9   DEPENDS
10   omp_gen
11   ClangDriverOptions
14 clang_target_link_libraries(clangReorderFields
15   PRIVATE
16   clangAST
17   clangASTMatchers
18   clangBasic
19   clangIndex
20   clangLex
21   clangSerialization
22   clangToolingCore
23   )
25 add_subdirectory(tool)