From e1d4f1a13d26f2502efc3ad856c7b61b71582b81 Mon Sep 17 00:00:00 2001 From: mattias Date: Wed, 28 Jan 2004 20:05:27 +0000 Subject: [PATCH] added sqlitelaz package git-svn-id: trunk@5113 - --- .gitattributes | 2 ++ components/sqlite/lib/README | 2 ++ components/sqlite/sqlitelaz.lpk | 40 +++++++++++++++++++++++++++++++++ components/sqlite/sqlitelaz.pas | 22 ++++++++++++++++++ 4 files changed, 66 insertions(+) create mode 100644 components/sqlite/lib/README create mode 100644 components/sqlite/sqlitelaz.lpk create mode 100644 components/sqlite/sqlitelaz.pas diff --git a/.gitattributes b/.gitattributes index 6fbf54979c..ad6b9a6954 100644 --- a/.gitattributes +++ b/.gitattributes @@ -87,6 +87,8 @@ components/mysql/registermysql.lrs svneol=native#text/pascal components/mysql/registermysql.pas svneol=native#text/pascal components/mysql/tmysqldatabase.xpm -text svneol=native#image/x-xpixmap components/mysql/tmysqldataset.xpm -text svneol=native#image/x-xpixmap +components/sqlite/sqlitelaz.lpk svneol=native#text/pascal +components/sqlite/sqlitelaz.pas svneol=native#text/pascal components/synedit/allsyneditunits.pp svneol=native#text/pascal components/synedit/design/tsynautocomplete.xpm -text svneol=native#image/x-xpixmap components/synedit/design/tsynedit.xpm -text svneol=native#image/x-xpixmap diff --git a/components/sqlite/lib/README b/components/sqlite/lib/README new file mode 100644 index 0000000000..66dbcb4f32 --- /dev/null +++ b/components/sqlite/lib/README @@ -0,0 +1,2 @@ +Output directory of package SQLiteLaz + diff --git a/components/sqlite/sqlitelaz.lpk b/components/sqlite/sqlitelaz.lpk new file mode 100644 index 0000000000..6e76e4277b --- /dev/null +++ b/components/sqlite/sqlitelaz.lpk @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/components/sqlite/sqlitelaz.pas b/components/sqlite/sqlitelaz.pas new file mode 100644 index 0000000000..bd7204a451 --- /dev/null +++ b/components/sqlite/sqlitelaz.pas @@ -0,0 +1,22 @@ +{ This file was automatically created by Lazarus. Do not edit! + This source is only used to compile and install + the package SQLiteLaz 1.0.1. +} + +unit SQLiteLaz; + +interface + +uses + SQLiteDataset, LazarusPackageIntf; + +implementation + +procedure Register; +begin + RegisterUnit('SQLiteDataset', @SQLiteDataset.Register); +end; + +initialization + RegisterPackage('SQLiteLaz', @Register) +end.