1set(LLVM_LINK_COMPONENTS
2  FrontendOpenMP
3  Support
4)
5
6add_clang_library(clangDynamicASTMatchers
7  Diagnostics.cpp
8  Marshallers.cpp
9  Parser.cpp
10  Registry.cpp
11  VariantValue.cpp
12
13  LINK_LIBS
14  clangAST
15  clangASTMatchers
16  clangBasic
17
18  DEPENDS
19  omp_gen
20  )
21