mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-08 22:17:06 +02:00
added sqlitelaz package
git-svn-id: trunk@5113 -
This commit is contained in:
parent
269687dae9
commit
e1d4f1a13d
2
.gitattributes
vendored
2
.gitattributes
vendored
@ -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
|
||||
|
2
components/sqlite/lib/README
Normal file
2
components/sqlite/lib/README
Normal file
@ -0,0 +1,2 @@
|
||||
Output directory of package SQLiteLaz
|
||||
|
40
components/sqlite/sqlitelaz.lpk
Normal file
40
components/sqlite/sqlitelaz.lpk
Normal 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>
|
22
components/sqlite/sqlitelaz.pas
Normal file
22
components/sqlite/sqlitelaz.pas
Normal 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.
|
Loading…
Reference in New Issue
Block a user