31 lines
449 B
CMake
Raw Normal View History

set(LLVM_LINK_COMPONENTS
BitReader
Support
)
add_clang_library(clangSerialization
ASTCommon.cpp
ASTReader.cpp
ASTReaderDecl.cpp
ASTReaderStmt.cpp
ASTWriter.cpp
ASTWriterDecl.cpp
ASTWriterStmt.cpp
2011-03-09 21:12:34 +00:00
GeneratePCH.cpp
GlobalModuleIndex.cpp
Module.cpp
ModuleManager.cpp
ADDITIONAL_HEADERS
ASTCommon.h
ASTReaderInternals.h
)
target_link_libraries(clangSerialization
clangAST
clangBasic
clangLex
clangSema
)