added sqlitelaz package

git-svn-id: trunk@5113 -
This commit is contained in:
mattias 2004-01-28 20:05:27 +00:00
parent 269687dae9
commit e1d4f1a13d
4 changed files with 66 additions and 0 deletions

2
.gitattributes vendored
View File

@ -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

View File

@ -0,0 +1,2 @@
Output directory of package SQLiteLaz

View File

@ -0,0 +1,40 @@
<?xml version="1.0"?>
<CONFIG>
<Package Version="2">
<Name Value="SQLiteLaz"/>
<Author Value="FPC Team"/>
<CompilerOptions>
<SearchPaths>
<UnitOutputDirectory Value="lib/"/>
</SearchPaths>
<Other>
<CompilerPath Value="$(CompPath)"/>
</Other>
</CompilerOptions>
<Description Value="SQLite"/>
<License Value="LGPL"/>
<Version Major="1" Release="1"/>
<Files Count="1">
<Item1>
<Filename Value="sqlitedataset.pas"/>
<HasRegisterProc Value="True"/>
<Type Value="Virtual Unit"/>
<UnitName Value="SQLiteDataset"/>
</Item1>
</Files>
<Type Value="RunAndDesignTime"/>
<RequiredPkgs Count="1">
<Item1>
<PackageName Value="FCL"/>
<MinVersion Major="1" Valid="True"/>
</Item1>
</RequiredPkgs>
<UsageOptions>
<UnitPath Value="$(PkgOutDir)/"/>
</UsageOptions>
<PublishOptions>
<Version Value="2"/>
<IgnoreBinaries Value="False"/>
</PublishOptions>
</Package>
</CONFIG>

View File

@ -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.