xref: /llvm-project/clang/lib/InstallAPI/CMakeLists.txt (revision feed66f3eae5006bb05e6cb34801930fd940daa8)
1set(LLVM_LINK_COMPONENTS
2  Support
3  TextAPI
4  TextAPIBinaryReader
5  Demangle
6  Core
7  )
8
9add_clang_library(clangInstallAPI
10  DiagnosticBuilderWrappers.cpp
11  DirectoryScanner.cpp
12  DylibVerifier.cpp
13  FileList.cpp
14  Frontend.cpp
15  HeaderFile.cpp
16  Library.cpp
17  Visitor.cpp
18
19  LINK_LIBS
20  clangAST
21  clangBasic
22  clangLex
23  )
24