cplusplus.pri 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. HEADERS += \
  2. $$PWD/cppassert.h \
  3. $$PWD/CPlusPlus.h \
  4. $$PWD/AST.h \
  5. $$PWD/ASTVisitor.h \
  6. $$PWD/ASTMatcher.h \
  7. $$PWD/ASTPatternBuilder.h \
  8. $$PWD/ASTfwd.h \
  9. $$PWD/Matcher.h \
  10. $$PWD/CPlusPlusForwardDeclarations.h \
  11. $$PWD/Control.h \
  12. $$PWD/CoreTypes.h \
  13. $$PWD/DiagnosticClient.h \
  14. $$PWD/FullySpecifiedType.h \
  15. $$PWD/Lexer.h \
  16. $$PWD/LiteralTable.h \
  17. $$PWD/Literals.h \
  18. $$PWD/MemoryPool.h \
  19. $$PWD/Name.h \
  20. $$PWD/NameVisitor.h \
  21. $$PWD/Names.h \
  22. $$PWD/Parser.h \
  23. $$PWD/Scope.h \
  24. $$PWD/Bind.h \
  25. $$PWD/Symbol.h \
  26. $$PWD/Symbols.h \
  27. $$PWD/SymbolVisitor.h \
  28. $$PWD/Token.h \
  29. $$PWD/TranslationUnit.h \
  30. $$PWD/Type.h \
  31. $$PWD/TypeVisitor.h \
  32. $$PWD/ObjectiveCTypeQualifiers.h \
  33. $$PWD/QtContextKeywords.h \
  34. $$PWD/Templates.h \
  35. $$PWD/SafeMatcher.h
  36. SOURCES += \
  37. $$PWD/AST.cpp \
  38. $$PWD/ASTVisit.cpp \
  39. $$PWD/ASTMatch0.cpp \
  40. $$PWD/ASTVisitor.cpp \
  41. $$PWD/ASTClone.cpp \
  42. $$PWD/ASTPatternBuilder.cpp \
  43. $$PWD/ASTMatcher.cpp \
  44. $$PWD/Matcher.cpp \
  45. $$PWD/Control.cpp \
  46. $$PWD/CoreTypes.cpp \
  47. $$PWD/DiagnosticClient.cpp \
  48. $$PWD/FullySpecifiedType.cpp \
  49. $$PWD/Keywords.cpp \
  50. $$PWD/ObjectiveCAtKeywords.cpp \
  51. $$PWD/ObjectiveCTypeQualifiers.cpp \
  52. $$PWD/Lexer.cpp \
  53. $$PWD/Literals.cpp \
  54. $$PWD/MemoryPool.cpp \
  55. $$PWD/Name.cpp \
  56. $$PWD/NameVisitor.cpp \
  57. $$PWD/Names.cpp \
  58. $$PWD/Parser.cpp \
  59. $$PWD/Scope.cpp \
  60. $$PWD/Bind.cpp \
  61. $$PWD/Symbol.cpp \
  62. $$PWD/Symbols.cpp \
  63. $$PWD/SymbolVisitor.cpp \
  64. $$PWD/Token.cpp \
  65. $$PWD/TranslationUnit.cpp \
  66. $$PWD/Type.cpp \
  67. $$PWD/TypeVisitor.cpp \
  68. $$PWD/QtContextKeywords.cpp \
  69. $$PWD/Templates.cpp \
  70. $$PWD/SafeMatcher.cpp