CMakeLists.txt 243 B

123456789101112131415161718
  1. set(LLVM_LINK_COMPONENTS
  2. Support
  3. )
  4. add_clang_library(clangIndex
  5. CommentToXML.cpp
  6. USRGeneration.cpp
  7. ADDITIONAL_HEADERS
  8. SimpleFormatContext.h
  9. LINK_LIBS
  10. clangAST
  11. clangBasic
  12. clangFormat
  13. clangRewrite
  14. clangToolingCore
  15. )