[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang-tools-extra / unittests / clang-query / CMakeLists.txt
blobb9ae520f85a7a7471a791835577e454fa51af84d
1 set(LLVM_LINK_COMPONENTS
2   FrontendOpenMP
3   Support
4   )
6 include_directories(
7   ${CMAKE_CURRENT_SOURCE_DIR}/../../clang-query
8   )
10 add_extra_unittest(ClangQueryTests
11   QueryEngineTest.cpp
12   QueryParserTest.cpp
13   )
15 clang_target_link_libraries(ClangQueryTests
16   PRIVATE
17   clangAST
18   clangASTMatchers
19   clangBasic
20   clangDynamicASTMatchers
21   clangFrontend
22   clangSerialization
23   clangTooling
24   )
25 target_link_libraries(ClangQueryTests
26   PRIVATE
27   clangQuery
28   )