]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/Serialization/CMakeLists.txt
Vendor import of clang trunk r351319 (just before the release_80 branch
[FreeBSD/FreeBSD.git] / lib / Serialization / CMakeLists.txt
1 set(LLVM_LINK_COMPONENTS
2   BitReader
3   Support
4   )
5
6
7 add_clang_library(clangSerialization
8   ASTCommon.cpp
9   ASTReader.cpp
10   ASTReaderDecl.cpp
11   ASTReaderStmt.cpp
12   ASTWriter.cpp
13   ASTWriterDecl.cpp
14   ASTWriterStmt.cpp
15   GeneratePCH.cpp
16   GlobalModuleIndex.cpp
17   Module.cpp
18   ModuleFileExtension.cpp
19   ModuleManager.cpp
20   PCHContainerOperations.cpp
21
22   ADDITIONAL_HEADERS
23   ASTCommon.h
24   ASTReaderInternals.h
25
26   LINK_LIBS
27   clangAST
28   clangBasic
29   clangLex
30   clangSema
31   )