[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / lib / Serialization / CMakeLists.txt
bloba7c5b5e4ffa41c338a98d519651b38ee531007b4
1 set(LLVM_LINK_COMPONENTS
2   BitReader
3   BitstreamReader
4   Support
5   )
8 add_clang_library(clangSerialization
9   ASTCommon.cpp
10   ASTReader.cpp
11   ASTReaderDecl.cpp
12   ASTReaderStmt.cpp
13   ASTWriter.cpp
14   ASTWriterDecl.cpp
15   ASTWriterStmt.cpp
16   GeneratePCH.cpp
17   GlobalModuleIndex.cpp
18   InMemoryModuleCache.cpp
19   ModuleFile.cpp
20   ModuleFileExtension.cpp
21   ModuleManager.cpp
22   PCHContainerOperations.cpp
24   ADDITIONAL_HEADERS
25   ASTCommon.h
26   ASTReaderInternals.h
28   LINK_LIBS
29   clangAST
30   clangBasic
31   clangLex
32   clangSema
34   DEPENDS
35   omp_gen
36   )