BrookTardigrade.dpk 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. (* _ _
  2. * | |__ _ __ ___ ___ | | __
  3. * | '_ \| '__/ _ \ / _ \| |/ /
  4. * | |_) | | | (_) | (_) | <
  5. * |_.__/|_| \___/ \___/|_|\_\
  6. *
  7. * Microframework which helps to develop web Pascal applications.
  8. *
  9. * Copyright (c) 2012-2021 Silvio Clecio <[email protected]>
  10. *
  11. * Brook framework is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU Lesser General Public
  13. * License as published by the Free Software Foundation; either
  14. * version 2.1 of the License, or (at your option) any later version.
  15. *
  16. * Brook framework is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  19. * Lesser General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU Lesser General Public
  22. * License along with Brook framework; if not, write to the Free Software
  23. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  24. *)
  25. package BrookTardigrade;
  26. {$R *.res}
  27. {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
  28. {$ALIGN 8}
  29. {$ASSERTIONS ON}
  30. {$BOOLEVAL OFF}
  31. {$DEBUGINFO OFF}
  32. {$EXTENDEDSYNTAX ON}
  33. {$IMPORTEDDATA ON}
  34. {$IOCHECKS ON}
  35. {$LOCALSYMBOLS ON}
  36. {$LONGSTRINGS ON}
  37. {$OPENSTRINGS ON}
  38. {$OPTIMIZATION OFF}
  39. {$OVERFLOWCHECKS OFF}
  40. {$RANGECHECKS OFF}
  41. {$REFERENCEINFO ON}
  42. {$SAFEDIVIDE OFF}
  43. {$STACKFRAMES ON}
  44. {$TYPEDADDRESS OFF}
  45. {$VARSTRINGCHECKS ON}
  46. {$WRITEABLECONST OFF}
  47. {$MINENUMSIZE 1}
  48. {$IMAGEBASE $400000}
  49. {$DEFINE DEBUG}
  50. {$ENDIF IMPLICITBUILDING}
  51. {$DESCRIPTION 'Brook is microframework which helps to develop web Pascal applications.'}
  52. {$IMPLICITBUILD ON}
  53. requires
  54. rtl,
  55. designide;
  56. contains
  57. BrookExtra in '..\Source\BrookExtra.pas',
  58. BrookHandledClasses in '..\Source\BrookHandledClasses.pas',
  59. BrookHTTPAuthentication in '..\Source\BrookHTTPAuthentication.pas',
  60. BrookHTTPCookies in '..\Source\BrookHTTPCookies.pas',
  61. BrookHTTPRequest in '..\Source\BrookHTTPRequest.pas',
  62. BrookHTTPResponse in '..\Source\BrookHTTPResponse.pas',
  63. BrookHTTPServer in '..\Source\BrookHTTPServer.pas',
  64. BrookHTTPUploads in '..\Source\BrookHTTPUploads.pas',
  65. BrookIDEIntegration in 'BrookIDEIntegration.pas',
  66. BrookLibraryLoader in '..\Source\BrookLibraryLoader.pas',
  67. BrookLogger in '..\Source\BrookLogger.pas',
  68. BrookMathExpression in '..\Source\BrookMathExpression.pas',
  69. BrookMediaTypes in '..\Source\BrookMediaTypes.pas',
  70. BrookReader in '..\Source\BrookReader.pas',
  71. BrookString in '..\Source\BrookString.pas',
  72. BrookStringMap in '..\Source\BrookStringMap.pas',
  73. BrookURLEntryPoints in '..\Source\BrookURLEntryPoints.pas',
  74. BrookURLRouter in '..\Source\BrookURLRouter.pas',
  75. BrookUtility in '..\Source\BrookUtility.pas',
  76. libsagui in '..\Source\libsagui.pas',
  77. Marshalling in '..\Source\Marshalling.pas',
  78. Platform in '..\Source\Platform.pas';
  79. end.