blob: d885db22975e38cff8c970c631c900282f00391d [file] [log] [blame]
Stephen Hines651f13c2014-04-23 16:59:28 -07001set(LLVM_LINK_COMPONENTS
2 BitReader
3 Support
4 )
5
Benjamin Kramere38c3392013-01-19 19:10:12 +00006
Sebastian Redl85728132010-08-17 20:43:28 +00007add_clang_library(clangSerialization
Argyrios Kyrtzidis0eca89e2010-08-20 16:03:52 +00008 ASTCommon.cpp
Sebastian Redl904c9c82010-08-18 23:57:11 +00009 ASTReader.cpp
10 ASTReaderDecl.cpp
11 ASTReaderStmt.cpp
Sebastian Redl4ee2ad02010-08-18 23:56:31 +000012 ASTWriter.cpp
13 ASTWriterDecl.cpp
14 ASTWriterStmt.cpp
Argyrios Kyrtzidis0199ac02011-03-09 21:12:34 +000015 GeneratePCH.cpp
Douglas Gregora6b00fc2013-01-23 22:38:11 +000016 GlobalModuleIndex.cpp
Douglas Gregor98339b92011-08-25 20:47:51 +000017 Module.cpp
18 ModuleManager.cpp
Sebastian Redl85728132010-08-17 20:43:28 +000019
Stephen Hines651f13c2014-04-23 16:59:28 -070020 ADDITIONAL_HEADERS
21 ASTCommon.h
22 ASTReaderInternals.h
Chandler Carruthb0d86712012-06-21 01:30:21 +000023
Stephen Hines651f13c2014-04-23 16:59:28 -070024 LINK_LIBS
25 clangAST
26 clangBasic
27 clangLex
Chandler Carruthb0d86712012-06-21 01:30:21 +000028 clangSema
29 )