NiceGrid: Initial commit

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8841 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2023-06-23 15:21:39 +00:00
parent 71a45035c5
commit 9884b87d80
35 changed files with 7140 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
package NiceGridD7;
{$R *.res}
{$ALIGN 8}
{$ASSERTIONS ON}
{$BOOLEVAL OFF}
{$DEBUGINFO ON}
{$EXTENDEDSYNTAX ON}
{$IMPORTEDDATA ON}
{$IOCHECKS ON}
{$LOCALSYMBOLS ON}
{$LONGSTRINGS ON}
{$OPENSTRINGS ON}
{$OPTIMIZATION ON}
{$OVERFLOWCHECKS OFF}
{$RANGECHECKS OFF}
{$REFERENCEINFO ON}
{$SAFEDIVIDE OFF}
{$STACKFRAMES OFF}
{$TYPEDADDRESS OFF}
{$VARSTRINGCHECKS ON}
{$WRITEABLECONST OFF}
{$MINENUMSIZE 1}
{$IMAGEBASE $400000}
{$DESCRIPTION 'priyatna.org - NiceGrid'}
{$IMPLICITBUILD OFF}
requires
rtl,
vcl,
DesignIDE;
contains
NiceGrid in '..\..\source\nicegrid.pas',
NiceGridReg in '..\..\source\nicegridreg.pas';
end.