CMakeLists.txt 416 B

1234567891011121314151617181920212223242526272829
  1. set(LLVM_LINK_COMPONENTS
  2. BitReader
  3. Support
  4. )
  5. add_clang_library(clangSerialization
  6. ASTCommon.cpp
  7. ASTReader.cpp
  8. ASTReaderDecl.cpp
  9. ASTReaderStmt.cpp
  10. ASTWriter.cpp
  11. ASTWriterDecl.cpp
  12. ASTWriterStmt.cpp
  13. GeneratePCH.cpp
  14. GlobalModuleIndex.cpp
  15. Module.cpp
  16. ModuleManager.cpp
  17. ADDITIONAL_HEADERS
  18. ASTCommon.h
  19. ASTReaderInternals.h
  20. LINK_LIBS
  21. clangAST
  22. clangBasic
  23. clangLex
  24. clangSema
  25. )