fpc/packages/odbc/fpmake.pp
2023-07-27 19:04:09 +02:00

50 lines
1.0 KiB
ObjectPascal

{$ifndef ALLPACKAGES}
{$mode objfpc}{$H+}
program fpmake;
uses {$ifdef unix}cthreads,{$endif} fpmkunit;
Var
P : TPackage;
T : TTarget;
begin
With Installer do
begin
{$endif ALLPACKAGES}
P:=AddPackage('odbc');
{$ifdef ALLPACKAGES}
P.Directory:=ADirectory;
{$endif ALLPACKAGES}
P.Version:='3.3.1';
P.OSes := AllUnixOSes+AllWindowsOSes-[qnx];
if Defaults.CPU=jvm then
P.OSes := P.OSes - [java,android];
P.SourcePath.Add('src');
P.IncludePath.Add('src');
T:=P.Targets.AddUnit('odbcsqldyn.pas');
with T.Dependencies do
begin
AddInclude('odbcsql.inc');
end;
T:=P.Targets.AddUnit('odbcsql.pas');
with T.Dependencies do
begin
AddInclude('odbcsql.inc');
end;
P.ExamplePath.Add('examples');
P.Targets.AddExampleProgram('testodbc.pp');
P.Sources.AddExampleFiles('examples/*',P.Directory,false,'.');
P.NamespaceMap:='namespaces.lst';
{$ifndef ALLPACKAGES}
Run;
end;
end.
{$endif ALLPACKAGES}