[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / lib / Serialization / CMakeLists.txt
blob48b37437d7e301ade31a2f3e5010cc02905349cf
1 set(LLVM_LINK_COMPONENTS
2   BitReader
3   BitstreamReader
4   Support
5   TargetParser
6   )
9 add_clang_library(clangSerialization
10   ASTCommon.cpp
11   ASTReader.cpp
12   ASTReaderDecl.cpp
13   ASTReaderStmt.cpp
14   ASTWriter.cpp
15   ASTWriterDecl.cpp
16   ASTWriterStmt.cpp
17   GeneratePCH.cpp
18   GlobalModuleIndex.cpp
19   InMemoryModuleCache.cpp
20   ModuleFile.cpp
21   ModuleFileExtension.cpp
22   ModuleManager.cpp
23   PCHContainerOperations.cpp
25   ADDITIONAL_HEADERS
26   ASTCommon.h
27   ASTReaderInternals.h
29   LINK_LIBS
30   clangAST
31   clangBasic
32   clangLex
33   clangSema
35   DEPENDS
36   omp_gen
37   )