Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt « tool « clang-tidy « clang-tools-extra - github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 536ee93812db4c10cb33ca44d61ee97200009697 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
set(LLVM_LINK_COMPONENTS
  support
  )

add_clang_executable(clang-tidy
  ClangTidyMain.cpp
  )
target_link_libraries(clang-tidy
  clangTidy
  clangTidyLLVMModule
  clangTidyGoogleModule
  clangStaticAnalyzerCheckers
  )

install(TARGETS clang-tidy
  RUNTIME DESTINATION bin)