[AMDGPU][AsmParser][NFC] Translate parsed MIMG instructions to MCInsts automatically.
[llvm-project.git] / clang-tools-extra / clang-tidy / utils / CMakeLists.txt
blob6c7d52a4b1873fd0adf879048c046b5357961fe1
1 set(LLVM_LINK_COMPONENTS
2   FrontendOpenMP
3   Support
4   )
6 add_clang_library(clangTidyUtils
7   Aliasing.cpp
8   ASTUtils.cpp
9   DeclRefExprUtils.cpp
10   ExceptionAnalyzer.cpp
11   ExceptionSpecAnalyzer.cpp
12   ExprSequence.cpp
13   FileExtensionsUtils.cpp
14   FormatStringConverter.cpp
15   FixItHintUtils.cpp
16   HeaderGuard.cpp
17   IncludeInserter.cpp
18   IncludeSorter.cpp
19   LexerUtils.cpp
20   NamespaceAliaser.cpp
21   OptionsUtils.cpp
22   RenamerClangTidyCheck.cpp
23   TransformerClangTidyCheck.cpp
24   TypeTraits.cpp
25   UsingInserter.cpp
27   LINK_LIBS
28   clangTidy
30   DEPENDS
31   omp_gen
32   )
34 clang_target_link_libraries(clangTidyUtils
35   PRIVATE
36   clangAST
37   clangASTMatchers
38   clangBasic
39   clangLex
40   clangSema
41   clangTooling
42   clangTransformer
43   )