[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang-tools-extra / clang-reorder-fields / CMakeLists.txt
blob4013c46433e65d0232cf2cfb0ca91014c4ab6383
1 set(LLVM_LINK_COMPONENTS
2   FrontendOpenMP
3   support
6 add_clang_library(clangReorderFields
7   ReorderFieldsAction.cpp
9   DEPENDS
10   omp_gen
13 clang_target_link_libraries(clangReorderFields
14   PRIVATE
15   clangAST
16   clangASTMatchers
17   clangBasic
18   clangIndex
19   clangLex
20   clangSerialization
21   clangToolingCore
22   )
24 add_subdirectory(tool)