CMakeLists.txt 438 B

123456789101112131415161718192021222324
  1. set(LLVM_OPTIONAL_SOURCES RewriteModernObjC.cpp) # HLSL Change - ignore file
  2. set(LLVM_LINK_COMPONENTS
  3. Support
  4. )
  5. add_clang_library(clangRewriteFrontend
  6. FixItRewriter.cpp
  7. FrontendActions_rewrite.cpp
  8. HTMLPrint.cpp
  9. InclusionRewriter.cpp
  10. RewriteMacros.cpp
  11. # RewriteModernObjC.cpp # HLSL Change
  12. RewriteObjC.cpp
  13. RewriteTest.cpp
  14. LINK_LIBS
  15. clangAST
  16. clangBasic
  17. clangEdit
  18. clangFrontend
  19. clangLex
  20. clangRewrite
  21. )