mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-22 07:39:26 +02:00
fpmake: Re-generated some fpmake.pp files
git-svn-id: trunk@47240 -
This commit is contained in:
parent
5aa97a0256
commit
3a0de4fe98
3
.gitattributes
vendored
3
.gitattributes
vendored
@ -679,6 +679,7 @@ components/chmhelp/packages/help/design/lazhelpchm.sh svneol=native#text/plain
|
||||
components/chmhelp/packages/help/design/lazhelpchm.txt svneol=native#text/plain
|
||||
components/chmhelp/packages/help/design/tchmhelpdatabase.png -text svneol=unset#image/png
|
||||
components/chmhelp/packages/help/design/tlhelpconnector.png -text svneol=unset#image/png
|
||||
components/chmhelp/packages/help/fpmake.pp svneol=native#text/plain
|
||||
components/chmhelp/packages/help/lazhelpchm.pas svneol=native#text/plain
|
||||
components/chmhelp/packages/help/lazhelpchm.res -text
|
||||
components/chmhelp/packages/help/lhelpcontrol.pas svneol=native#text/plain
|
||||
@ -3208,6 +3209,7 @@ components/rx/tstrholder.xpm -text svneol=native#image/x-xpixmap
|
||||
components/sdf/Makefile svneol=native#text/plain
|
||||
components/sdf/Makefile.compiled svneol=native#text/plain
|
||||
components/sdf/Makefile.fpc svneol=native#text/plain
|
||||
components/sdf/fpmake.pp svneol=native#text/plain
|
||||
components/sdf/images/registersdf.bat svneol=native#text/x-msdos-program
|
||||
components/sdf/images/registersdf.txt svneol=native#text/plain
|
||||
components/sdf/images/tfixedformatdataset.png -text svneol=unset#image/png
|
||||
@ -3251,6 +3253,7 @@ components/sqldb/design/tsqlquery.png -text svneol=unset#image/png
|
||||
components/sqldb/design/tsqlscript.png -text svneol=unset#image/png
|
||||
components/sqldb/design/tsqltransaction.png -text svneol=unset#image/png
|
||||
components/sqldb/design/tsybaseconnection.png -text svneol=unset#image/png
|
||||
components/sqldb/fpmake.pp svneol=native#text/plain
|
||||
components/sqldb/languages/registersqldb.cs.po svneol=native#text/plain
|
||||
components/sqldb/languages/registersqldb.de.po svneol=native#text/plain
|
||||
components/sqldb/languages/registersqldb.es.po svneol=native#text/plain
|
||||
|
67
components/chmhelp/packages/help/fpmake.pp
Normal file
67
components/chmhelp/packages/help/fpmake.pp
Normal file
@ -0,0 +1,67 @@
|
||||
{
|
||||
File generated automatically by Lazarus Package Manager
|
||||
|
||||
fpmake.pp for lhelpcontrolpkg 0.2
|
||||
|
||||
This file was generated on 23-12-2014
|
||||
}
|
||||
|
||||
{$ifndef ALLPACKAGES}
|
||||
{$mode objfpc}{$H+}
|
||||
program fpmake;
|
||||
|
||||
uses fpmkunit;
|
||||
{$endif ALLPACKAGES}
|
||||
|
||||
procedure add_lhelpcontrolpkg;
|
||||
|
||||
var
|
||||
P : TPackage;
|
||||
T : TTarget;
|
||||
|
||||
begin
|
||||
with Installer do
|
||||
begin
|
||||
P:=AddPAckage('lhelpcontrolpkg');
|
||||
P.Version:='0.2';
|
||||
|
||||
{$ifdef ALLPACKAGES}
|
||||
// when this is part of a meta package, set here the sub directory
|
||||
P.Directory:='components'+PathDelim+'chmhelp'+PathDelim+'packages'+PathDelim+'help';
|
||||
{$endif ALLPACKAGES}
|
||||
|
||||
P.Dependencies.Add('lcl');
|
||||
P.Options.Add('-MObjFPC');
|
||||
P.Options.Add('-Scgi');
|
||||
P.Options.Add('-O1');
|
||||
P.Options.Add('-g');
|
||||
P.Options.Add('-gl');
|
||||
P.Options.Add('-l');
|
||||
P.Options.Add('-vewnhibq');
|
||||
P.Options.Add('-dLCL');
|
||||
P.Options.Add('-dLCL$(LCL_PLATFORM)');
|
||||
P.Options.Add('-dNoCarbon');
|
||||
P.UnitPath.Add('../../../../packager/units/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.UnitPath.Add('../../../lazutils/lib/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.UnitPath.Add('../../../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.UnitPath.Add('../../../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)');
|
||||
P.UnitPath.Add('.');
|
||||
T:=P.Targets.AddUnit('lhelpcontrolpkg.pas');
|
||||
t.Dependencies.AddUnit('lhelpcontrol');
|
||||
t.Dependencies.AddUnit('lazhelpchm');
|
||||
|
||||
T:=P.Targets.AddUnit('lhelpcontrol.pas');
|
||||
T:=P.Targets.AddUnit('lazhelpchm.pas');
|
||||
|
||||
// copy the compiled file, so the IDE knows how the package was compiled
|
||||
P.InstallFiles.Add('lhelpcontrolpkg.compiled',AllOSes,'$(unitinstalldir)');
|
||||
|
||||
end;
|
||||
end;
|
||||
|
||||
{$ifndef ALLPACKAGES}
|
||||
begin
|
||||
add_lhelpcontrolpkg;
|
||||
Installer.Run;
|
||||
end.
|
||||
{$endif ALLPACKAGES}
|
@ -3,7 +3,7 @@
|
||||
|
||||
fpmake.pp for CodeTools 1.0.1
|
||||
|
||||
This file was generated on 09/07/12
|
||||
This file was generated on 23-12-2014
|
||||
}
|
||||
|
||||
{$ifndef ALLPACKAGES}
|
||||
@ -31,17 +31,17 @@ begin
|
||||
{$endif ALLPACKAGES}
|
||||
|
||||
P.Dependencies.Add('lazutils');
|
||||
P.Dependencies.Add('fcl');
|
||||
P.Options.Add('-MObjFPC');
|
||||
P.Options.Add('-Sci');
|
||||
P.Options.Add('-O1');
|
||||
P.Options.Add('-g');
|
||||
P.Options.Add('-gl');
|
||||
P.Options.Add('-vewni');
|
||||
P.Options.Add('-l');
|
||||
P.Options.Add('-Fu../lazutils/lib/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.Options.Add('-Fu../../packager/units/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.Options.Add('-Fu.');
|
||||
P.Options.Add('-vh-');
|
||||
P.Options.Add('-vewnibq');
|
||||
P.UnitPath.Add('../../packager/units/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.UnitPath.Add('../lazutils/lib/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.UnitPath.Add('.');
|
||||
T:=P.Targets.AddUnit('codetools.pas');
|
||||
t.Dependencies.AddUnit('basiccodetools');
|
||||
t.Dependencies.AddUnit('cachecodetools');
|
||||
@ -95,6 +95,9 @@ begin
|
||||
t.Dependencies.AddUnit('codetoolsfpcmsgs');
|
||||
t.Dependencies.AddUnit('unitdictionary');
|
||||
t.Dependencies.AddUnit('ctloadlaz');
|
||||
t.Dependencies.AddUnit('ctunitgroupgraph');
|
||||
t.Dependencies.AddUnit('codecompletiontemplater');
|
||||
t.Dependencies.AddUnit('codetoolgdbtracer');
|
||||
|
||||
T:=P.Targets.AddUnit('basiccodetools.pas');
|
||||
T:=P.Targets.AddUnit('cachecodetools.pas');
|
||||
@ -149,6 +152,9 @@ begin
|
||||
T:=P.Targets.AddUnit('codetoolsfpcmsgs.pas');
|
||||
T:=P.Targets.AddUnit('unitdictionary.pas');
|
||||
T:=P.Targets.AddUnit('ctloadlaz.pas');
|
||||
T:=P.Targets.AddUnit('ctunitgroupgraph.pas');
|
||||
T:=P.Targets.AddUnit('codecompletiontemplater.pas');
|
||||
T:=P.Targets.AddUnit('codetoolgdbtracer.pas');
|
||||
|
||||
// copy the compiled file, so the IDE knows how the package was compiled
|
||||
P.InstallFiles.Add('CodeTools.compiled',AllOSes,'$(unitinstalldir)');
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
fpmake.pp for IDEIntf 1.0
|
||||
|
||||
This file was generated on 09/07/12
|
||||
This file was generated on 23-12-2014
|
||||
}
|
||||
|
||||
{$ifndef ALLPACKAGES}
|
||||
@ -27,27 +27,28 @@ begin
|
||||
|
||||
{$ifdef ALLPACKAGES}
|
||||
// when this is part of a meta package, set here the sub directory
|
||||
P.Directory:='ideintf';
|
||||
P.Directory:='components/ideintf';
|
||||
{$endif ALLPACKAGES}
|
||||
|
||||
P.Dependencies.Add('lazcontrols');
|
||||
P.Dependencies.Add('fcl-res');
|
||||
P.Options.Add('-MObjFPC');
|
||||
P.Options.Add('-Scghi');
|
||||
P.Options.Add('-O1');
|
||||
P.Options.Add('-g');
|
||||
P.Options.Add('-gl');
|
||||
P.Options.Add('-vew');
|
||||
P.Options.Add('-l');
|
||||
P.Options.Add('-vi-');
|
||||
P.Options.Add('-vewnhbq');
|
||||
P.Options.Add('-dLCL');
|
||||
P.Options.Add('-dLCL$(LCL_PLATFORM)');
|
||||
P.Options.Add('-dNoCarbon');
|
||||
P.IncludePath.Add('images');
|
||||
P.Options.Add('-Fu../components/lazcontrols/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)');
|
||||
P.Options.Add('-Fu../lcl/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)');
|
||||
P.Options.Add('-Fu../lcl/units/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.Options.Add('-Fu../components/lazutils/lib/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.Options.Add('-Fu../packager/units/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.Options.Add('-Fu.');
|
||||
P.UnitPath.Add('../../packager/units/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.UnitPath.Add('../lazutils/lib/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.UnitPath.Add('../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.UnitPath.Add('../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)');
|
||||
P.UnitPath.Add('../lazcontrols/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)');
|
||||
P.UnitPath.Add('.');
|
||||
T:=P.Targets.AddUnit('ideintf.pas');
|
||||
t.Dependencies.AddUnit('actionseditor');
|
||||
t.Dependencies.AddUnit('actionseditorstd');
|
||||
@ -59,9 +60,11 @@ begin
|
||||
t.Dependencies.AddUnit('componenteditors');
|
||||
t.Dependencies.AddUnit('componentreg');
|
||||
t.Dependencies.AddUnit('componenttreeview');
|
||||
t.Dependencies.AddUnit('compoptsintf');
|
||||
t.Dependencies.AddUnit('dbpropedits');
|
||||
t.Dependencies.AddUnit('fieldseditor');
|
||||
t.Dependencies.AddUnit('fieldslist');
|
||||
t.Dependencies.AddUnit('filefilterpropeditor');
|
||||
t.Dependencies.AddUnit('formeditingintf');
|
||||
t.Dependencies.AddUnit('frmselectprops');
|
||||
t.Dependencies.AddUnit('graphicpropedit');
|
||||
@ -76,11 +79,14 @@ begin
|
||||
t.Dependencies.AddUnit('idemsgintf');
|
||||
t.Dependencies.AddUnit('ideoptionsintf');
|
||||
t.Dependencies.AddUnit('idetextconverter');
|
||||
t.Dependencies.AddUnit('ideutils');
|
||||
t.Dependencies.AddUnit('idewindowintf');
|
||||
t.Dependencies.AddUnit('imagelisteditor');
|
||||
t.Dependencies.AddUnit('keyvalpropeditdlg');
|
||||
t.Dependencies.AddUnit('lazideintf');
|
||||
t.Dependencies.AddUnit('lazstringgridedit');
|
||||
t.Dependencies.AddUnit('listviewpropedit');
|
||||
t.Dependencies.AddUnit('macrodefintf');
|
||||
t.Dependencies.AddUnit('macrointf');
|
||||
t.Dependencies.AddUnit('maskpropedit');
|
||||
t.Dependencies.AddUnit('menuintf');
|
||||
@ -99,7 +105,9 @@ begin
|
||||
t.Dependencies.AddUnit('stringspropeditdlg');
|
||||
t.Dependencies.AddUnit('texttools');
|
||||
t.Dependencies.AddUnit('treeviewpropedit');
|
||||
t.Dependencies.AddUnit('compoptsintf');
|
||||
t.Dependencies.AddUnit('unitresources');
|
||||
t.Dependencies.AddUnit('projpackintf');
|
||||
t.Dependencies.AddUnit('dbgridcolumnspropeditform');
|
||||
|
||||
T:=P.Targets.AddUnit('actionseditor.pas');
|
||||
T:=P.Targets.AddUnit('actionseditorstd.pas');
|
||||
@ -111,9 +119,11 @@ begin
|
||||
T:=P.Targets.AddUnit('componenteditors.pas');
|
||||
T:=P.Targets.AddUnit('componentreg.pas');
|
||||
T:=P.Targets.AddUnit('componenttreeview.pas');
|
||||
T:=P.Targets.AddUnit('compoptsintf.pas');
|
||||
T:=P.Targets.AddUnit('dbpropedits.pas');
|
||||
T:=P.Targets.AddUnit('fieldseditor.pas');
|
||||
T:=P.Targets.AddUnit('fieldslist.pas');
|
||||
T:=P.Targets.AddUnit('filefilterpropeditor.pas');
|
||||
T:=P.Targets.AddUnit('formeditingintf.pas');
|
||||
T:=P.Targets.AddUnit('frmselectprops.pas');
|
||||
T:=P.Targets.AddUnit('graphicpropedit.pas');
|
||||
@ -128,11 +138,14 @@ begin
|
||||
T:=P.Targets.AddUnit('idemsgintf.pas');
|
||||
T:=P.Targets.AddUnit('ideoptionsintf.pas');
|
||||
T:=P.Targets.AddUnit('idetextconverter.pas');
|
||||
T:=P.Targets.AddUnit('ideutils.pas');
|
||||
T:=P.Targets.AddUnit('idewindowintf.pas');
|
||||
T:=P.Targets.AddUnit('imagelisteditor.pp');
|
||||
T:=P.Targets.AddUnit('keyvalpropeditdlg.pas');
|
||||
T:=P.Targets.AddUnit('lazideintf.pas');
|
||||
T:=P.Targets.AddUnit('lazstringgridedit.pas');
|
||||
T:=P.Targets.AddUnit('listviewpropedit.pp');
|
||||
T:=P.Targets.AddUnit('macrodefintf.pas');
|
||||
T:=P.Targets.AddUnit('macrointf.pas');
|
||||
T:=P.Targets.AddUnit('maskpropedit.pas');
|
||||
T:=P.Targets.AddUnit('menuintf.pas');
|
||||
@ -151,7 +164,9 @@ begin
|
||||
T:=P.Targets.AddUnit('stringspropeditdlg.pas');
|
||||
T:=P.Targets.AddUnit('texttools.pas');
|
||||
T:=P.Targets.AddUnit('treeviewpropedit.pas');
|
||||
T:=P.Targets.AddUnit('compoptsintf.pas');
|
||||
T:=P.Targets.AddUnit('unitresources.pas');
|
||||
T:=P.Targets.AddUnit('projpackintf.pas');
|
||||
T:=P.Targets.AddUnit('dbgridcolumnspropeditform.pas');
|
||||
|
||||
// copy the compiled file, so the IDE knows how the package was compiled
|
||||
P.InstallFiles.Add('IDEIntf.compiled',AllOSes,'$(unitinstalldir)');
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
fpmake.pp for LazControls 1.0.1
|
||||
|
||||
This file was generated on 09/01/12
|
||||
This file was generated on 23-12-2014
|
||||
}
|
||||
|
||||
{$ifndef ALLPACKAGES}
|
||||
@ -31,21 +31,21 @@ begin
|
||||
{$endif ALLPACKAGES}
|
||||
|
||||
P.Dependencies.Add('lcl');
|
||||
P.Dependencies.Add('fcl');
|
||||
P.Options.Add('-MObjFPC');
|
||||
P.Options.Add('-Scghi');
|
||||
P.Options.Add('-O1');
|
||||
P.Options.Add('-g');
|
||||
P.Options.Add('-gl');
|
||||
P.Options.Add('-vewnhi');
|
||||
P.Options.Add('-l');
|
||||
P.Options.Add('-vewnhibq');
|
||||
P.Options.Add('-dLCL');
|
||||
P.Options.Add('-dLCL$(LCL_PLATFORM)');
|
||||
P.Options.Add('-Fu../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)');
|
||||
P.Options.Add('-Fu../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.Options.Add('-Fu../lazutils/lib/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.Options.Add('-Fu../../packager/units/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.Options.Add('-Fu.');
|
||||
P.Options.Add('-dNoCarbon');
|
||||
P.UnitPath.Add('../../packager/units/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.UnitPath.Add('../lazutils/lib/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.UnitPath.Add('../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.UnitPath.Add('../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)');
|
||||
P.UnitPath.Add('.');
|
||||
T:=P.Targets.AddUnit('lazcontrols.pas');
|
||||
t.Dependencies.AddUnit('checkboxthemed');
|
||||
t.Dependencies.AddUnit('dividerbevel');
|
||||
@ -54,6 +54,8 @@ begin
|
||||
t.Dependencies.AddUnit('listviewfilteredit');
|
||||
t.Dependencies.AddUnit('treefilteredit');
|
||||
t.Dependencies.AddUnit('shortpathedit');
|
||||
t.Dependencies.AddUnit('lvlgraphctrl');
|
||||
t.Dependencies.AddUnit('extendedtabcontrols');
|
||||
|
||||
T:=P.Targets.AddUnit('checkboxthemed.pas');
|
||||
T:=P.Targets.AddUnit('dividerbevel.pas');
|
||||
@ -62,6 +64,8 @@ begin
|
||||
T:=P.Targets.AddUnit('listviewfilteredit.pas');
|
||||
T:=P.Targets.AddUnit('treefilteredit.pas');
|
||||
T:=P.Targets.AddUnit('shortpathedit.pas');
|
||||
T:=P.Targets.AddUnit('lvlgraphctrl.pas');
|
||||
T:=P.Targets.AddUnit('extendedtabcontrols.pas');
|
||||
|
||||
// copy the compiled file, so the IDE knows how the package was compiled
|
||||
P.InstallFiles.Add('LazControls.compiled',AllOSes,'$(unitinstalldir)');
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
fpmake.pp for LazUtils 1.0
|
||||
|
||||
This file was generated on 08/21/12
|
||||
This file was generated on 23-12-2014
|
||||
}
|
||||
|
||||
{$ifndef ALLPACKAGES}
|
||||
@ -26,28 +26,21 @@ begin
|
||||
P.Version:='1.0';
|
||||
|
||||
{$ifdef ALLPACKAGES}
|
||||
// when this is part of a meta package, set here the sub directory
|
||||
P.Directory:='components/lazutils/';
|
||||
{$endif ALLPACKAGES}
|
||||
P.SupportBuildModes := [bmBuildUnit];
|
||||
|
||||
P.Dependencies.Add('fcl');
|
||||
P.Dependencies.Add('fcl-base');
|
||||
P.Dependencies.Add('fcl-image');
|
||||
P.Options.Add('-MObjFPC');
|
||||
P.Options.Add('-Scghi');
|
||||
P.Options.Add('-O1');
|
||||
P.Options.Add('-g');
|
||||
P.Options.Add('-gl');
|
||||
P.Options.Add('-vewnhi');
|
||||
P.Options.Add('-l');
|
||||
P.Options.Add('-Fu../../packager/units/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.Options.Add('-Fu.');
|
||||
P.Options.Add('-vewnhibq');
|
||||
P.UnitPath.Add('../../packager/units/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.UnitPath.Add('.');
|
||||
T:=P.Targets.AddUnit('lazutils.pas');
|
||||
t.Dependencies.AddUnit('lazutilsstrconsts');
|
||||
t.Dependencies.AddUnit('lazlogger');
|
||||
t.Dependencies.AddUnit('lazutf8');
|
||||
t.Dependencies.AddUnit('lazutf8sysutils');
|
||||
t.Dependencies.AddUnit('lazutf8classes');
|
||||
t.Dependencies.AddUnit('laz2_dom');
|
||||
t.Dependencies.AddUnit('laz2_xmlcfg');
|
||||
t.Dependencies.AddUnit('laz2_xmlread');
|
||||
@ -60,15 +53,19 @@ begin
|
||||
t.Dependencies.AddUnit('laz_xmlwrite');
|
||||
t.Dependencies.AddUnit('lazfileutils');
|
||||
t.Dependencies.AddUnit('lazfilecache');
|
||||
t.Dependencies.AddUnit('lazutf8');
|
||||
t.Dependencies.AddUnit('lazdbglog');
|
||||
t.Dependencies.AddUnit('paswstring');
|
||||
t.Dependencies.AddUnit('fileutil');
|
||||
t.Dependencies.AddUnit('lazconfigstorage');
|
||||
t.Dependencies.AddUnit('lazutf8classes');
|
||||
t.Dependencies.AddUnit('masks');
|
||||
t.Dependencies.AddUnit('lazutilsstrconsts');
|
||||
t.Dependencies.AddUnit('lconvencoding');
|
||||
t.Dependencies.AddUnit('lazutf16');
|
||||
t.Dependencies.AddUnit('lazutf8sysutils');
|
||||
t.Dependencies.AddUnit('lazmethodlist');
|
||||
t.Dependencies.AddUnit('avglvltree');
|
||||
t.Dependencies.AddUnit('lazlogger');
|
||||
t.Dependencies.AddUnit('lazfreetype');
|
||||
t.Dependencies.AddUnit('ttcache');
|
||||
t.Dependencies.AddUnit('ttcalc');
|
||||
@ -90,6 +87,13 @@ begin
|
||||
t.Dependencies.AddUnit('lazloggerdummy');
|
||||
t.Dependencies.AddUnit('lazclasses');
|
||||
t.Dependencies.AddUnit('lazfreetypefontcollection');
|
||||
t.Dependencies.AddUnit('lazconfigstorage');
|
||||
t.Dependencies.AddUnit('utf8process');
|
||||
t.Dependencies.AddUnit('laz2_xpath');
|
||||
t.Dependencies.AddUnit('dictionarystringlist');
|
||||
t.Dependencies.AddUnit('lazloggerprofiling');
|
||||
t.Dependencies.AddUnit('fpcadds');
|
||||
t.Dependencies.AddUnit('lazutilities');
|
||||
|
||||
T:=P.Targets.AddUnit('laz2_dom.pas');
|
||||
T:=P.Targets.AddUnit('laz2_xmlcfg.pas');
|
||||
@ -108,7 +112,6 @@ begin
|
||||
T:=P.Targets.AddUnit('paswstring.pas');
|
||||
T:=P.Targets.AddUnit('fileutil.pas');
|
||||
T:=P.Targets.AddUnit('lazutf8classes.pas');
|
||||
T:=P.Targets.AddUnit('lazconfigstorage.pas');
|
||||
T:=P.Targets.AddUnit('masks.pas');
|
||||
T:=P.Targets.AddUnit('lazutilsstrconsts.pas');
|
||||
T:=P.Targets.AddUnit('lconvencoding.pas');
|
||||
@ -138,6 +141,16 @@ begin
|
||||
T:=P.Targets.AddUnit('lazloggerdummy.pas');
|
||||
T:=P.Targets.AddUnit('lazclasses.pas');
|
||||
T:=P.Targets.AddUnit('lazfreetypefontcollection.pas');
|
||||
T:=P.Targets.AddUnit('lazconfigstorage.pas');
|
||||
T:=P.Targets.AddUnit('utf8process.pp');
|
||||
T:=P.Targets.AddUnit('laz2_xpath.pas');
|
||||
T:=P.Targets.AddUnit('dictionarystringlist.pas');
|
||||
T:=P.Targets.AddUnit('lazloggerprofiling.pas');
|
||||
T:=P.Targets.AddUnit('fpcadds.pas');
|
||||
T:=P.Targets.AddUnit('lazutilities.pas');
|
||||
|
||||
// copy the compiled file, so the IDE knows how the package was compiled
|
||||
P.InstallFiles.Add('LazUtils.compiled',AllOSes,'$(unitinstalldir)');
|
||||
|
||||
end;
|
||||
end;
|
||||
|
65
components/sdf/fpmake.pp
Normal file
65
components/sdf/fpmake.pp
Normal file
@ -0,0 +1,65 @@
|
||||
{
|
||||
File generated automatically by Lazarus Package Manager
|
||||
|
||||
fpmake.pp for SDFLaz 0.1.1
|
||||
|
||||
This file was generated on 23-12-2014
|
||||
}
|
||||
|
||||
{$ifndef ALLPACKAGES}
|
||||
{$mode objfpc}{$H+}
|
||||
program fpmake;
|
||||
|
||||
uses fpmkunit;
|
||||
{$endif ALLPACKAGES}
|
||||
|
||||
procedure add_SDFLaz;
|
||||
|
||||
var
|
||||
P : TPackage;
|
||||
T : TTarget;
|
||||
|
||||
begin
|
||||
with Installer do
|
||||
begin
|
||||
P:=AddPAckage('sdflaz');
|
||||
P.Version:='0.1.1';
|
||||
|
||||
{$ifdef ALLPACKAGES}
|
||||
// when this is part of a meta package, set here the sub directory
|
||||
P.Directory:='components/sdf';
|
||||
{$endif ALLPACKAGES}
|
||||
|
||||
P.Dependencies.Add('lcl');
|
||||
P.Options.Add('-MObjFPC');
|
||||
P.Options.Add('-Scgi');
|
||||
P.Options.Add('-O1');
|
||||
P.Options.Add('-g');
|
||||
P.Options.Add('-gl');
|
||||
P.Options.Add('-l');
|
||||
P.Options.Add('-vewnhibq');
|
||||
P.Options.Add('-dLCL');
|
||||
P.Options.Add('-dLCL$(LCL_PLATFORM)');
|
||||
P.Options.Add('-dNoCarbon');
|
||||
P.UnitPath.Add('../../packager/units/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.UnitPath.Add('../lazutils/lib/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.UnitPath.Add('../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.UnitPath.Add('../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)');
|
||||
P.UnitPath.Add('.');
|
||||
T:=P.Targets.AddUnit('sdflaz.pas');
|
||||
t.Dependencies.AddUnit('registersdf');
|
||||
|
||||
T:=P.Targets.AddUnit('registersdf.pas');
|
||||
|
||||
// copy the compiled file, so the IDE knows how the package was compiled
|
||||
P.InstallFiles.Add('SDFLaz.compiled',AllOSes,'$(unitinstalldir)');
|
||||
|
||||
end;
|
||||
end;
|
||||
|
||||
{$ifndef ALLPACKAGES}
|
||||
begin
|
||||
add_SDFLaz;
|
||||
Installer.Run;
|
||||
end.
|
||||
{$endif ALLPACKAGES}
|
72
components/sqldb/fpmake.pp
Normal file
72
components/sqldb/fpmake.pp
Normal file
@ -0,0 +1,72 @@
|
||||
{
|
||||
File generated automatically by Lazarus Package Manager
|
||||
|
||||
fpmake.pp for SQLDBLaz 1.0.1
|
||||
|
||||
This file was generated on 23-12-2014
|
||||
}
|
||||
|
||||
{$ifndef ALLPACKAGES}
|
||||
{$mode objfpc}{$H+}
|
||||
program fpmake;
|
||||
|
||||
uses fpmkunit;
|
||||
{$endif ALLPACKAGES}
|
||||
|
||||
procedure add_SQLDBLaz;
|
||||
|
||||
var
|
||||
P : TPackage;
|
||||
T : TTarget;
|
||||
|
||||
begin
|
||||
with Installer do
|
||||
begin
|
||||
P:=AddPAckage('sqldblaz');
|
||||
P.Version:='1.0.1';
|
||||
|
||||
{$ifdef ALLPACKAGES}
|
||||
// when this is part of a meta package, set here the sub directory
|
||||
P.Directory:='components/sqldb';
|
||||
{$endif ALLPACKAGES}
|
||||
|
||||
P.Dependencies.Add('codetools');
|
||||
P.Dependencies.Add('synedit');
|
||||
P.Dependencies.Add('ideintf');
|
||||
P.Options.Add('-MObjFPC');
|
||||
P.Options.Add('-Scgi');
|
||||
P.Options.Add('-O1');
|
||||
P.Options.Add('-g');
|
||||
P.Options.Add('-gl');
|
||||
P.Options.Add('-l');
|
||||
P.Options.Add('-vewnhibq');
|
||||
P.Options.Add('-dLCL');
|
||||
P.Options.Add('-dLCL$(LCL_PLATFORM)');
|
||||
P.Options.Add('-dNoCarbon');
|
||||
P.UnitPath.Add('../../packager/units/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.UnitPath.Add('../lazutils/lib/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.UnitPath.Add('../codetools/units/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.UnitPath.Add('../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.UnitPath.Add('../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)');
|
||||
P.UnitPath.Add('../lazcontrols/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)');
|
||||
P.UnitPath.Add('../synedit/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)');
|
||||
P.UnitPath.Add('../ideintf/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)');
|
||||
P.UnitPath.Add('.');
|
||||
T:=P.Targets.AddUnit('sqldblaz.pas');
|
||||
t.Dependencies.AddUnit('sqlstringspropertyeditordlg');
|
||||
|
||||
P.Sources.AddSrc('registersqldb.pas');
|
||||
T:=P.Targets.AddUnit('sqlstringspropertyeditordlg.pas');
|
||||
|
||||
// copy the compiled file, so the IDE knows how the package was compiled
|
||||
P.InstallFiles.Add('SQLDBLaz.compiled',AllOSes,'$(unitinstalldir)');
|
||||
|
||||
end;
|
||||
end;
|
||||
|
||||
{$ifndef ALLPACKAGES}
|
||||
begin
|
||||
add_SQLDBLaz;
|
||||
Installer.Run;
|
||||
end.
|
||||
{$endif ALLPACKAGES}
|
@ -3,7 +3,7 @@
|
||||
|
||||
fpmake.pp for SynEdit 1.0
|
||||
|
||||
This file was generated on 09/07/12
|
||||
This file was generated on 23-12-2014
|
||||
}
|
||||
|
||||
{$ifndef ALLPACKAGES}
|
||||
@ -31,26 +31,26 @@ begin
|
||||
{$endif ALLPACKAGES}
|
||||
|
||||
P.Dependencies.Add('lcl');
|
||||
P.Dependencies.Add('lazutils');
|
||||
p.Dependencies.Add('fcl-registry');
|
||||
P.Options.Add('-MObjFPC');
|
||||
P.Options.Add('-Scghi');
|
||||
P.Options.Add('-CR');
|
||||
P.Options.Add('-O1');
|
||||
P.Options.Add('-g');
|
||||
P.Options.Add('-gl');
|
||||
P.Options.Add('-vewnh');
|
||||
P.Options.Add('-l');
|
||||
P.Options.Add('-vm4055,5024');
|
||||
P.Options.Add('-vi-');
|
||||
P.Options.Add('-vewnhbq');
|
||||
P.Options.Add('-vm5024,4055');
|
||||
P.Options.Add('-dLCL');
|
||||
P.Options.Add('-dLCL$(LCL_PLATFORM)');
|
||||
P.Options.Add('-dNoCarbon');
|
||||
P.Options.Add('-CR');
|
||||
P.Options.Add('-dgc');
|
||||
P.Options.Add('-Fu../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)');
|
||||
P.Options.Add('-Fu../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.Options.Add('-Fu../lazutils/lib/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.Options.Add('-Fu../../packager/units/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.Options.Add('-Fu.');
|
||||
P.UnitPath.Add('../../packager/units/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.UnitPath.Add('../lazutils/lib/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.UnitPath.Add('../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)');
|
||||
P.UnitPath.Add('../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)');
|
||||
P.UnitPath.Add('.');
|
||||
T:=P.Targets.AddUnit('allsynedit.pas');
|
||||
t.Dependencies.AddUnit('synbeautifier');
|
||||
t.Dependencies.AddUnit('syncompletion');
|
||||
@ -83,7 +83,7 @@ begin
|
||||
t.Dependencies.AddUnit('syneditstrconst');
|
||||
t.Dependencies.AddUnit('synedittextbase');
|
||||
t.Dependencies.AddUnit('synedittextbuffer');
|
||||
t.Dependencies.AddUnit('synedittextdoublewidthchars');
|
||||
t.Dependencies.AddUnit('synedittextbidichars');
|
||||
t.Dependencies.AddUnit('synedittexttabexpander');
|
||||
t.Dependencies.AddUnit('synedittexttrimmer');
|
||||
t.Dependencies.AddUnit('synedittypes');
|
||||
@ -128,6 +128,9 @@ begin
|
||||
t.Dependencies.AddUnit('synhighlighterbat');
|
||||
t.Dependencies.AddUnit('synhighlighterini');
|
||||
t.Dependencies.AddUnit('syneditmarkupspecialchar');
|
||||
t.Dependencies.AddUnit('synedittextdoublewidthchars');
|
||||
t.Dependencies.AddUnit('synedittextsystemcharwidth');
|
||||
t.Dependencies.AddUnit('syneditmarkupifdef');
|
||||
|
||||
T:=P.Targets.AddUnit('synbeautifier.pas');
|
||||
T:=P.Targets.AddUnit('syncompletion.pas');
|
||||
@ -161,7 +164,7 @@ begin
|
||||
T:=P.Targets.AddUnit('syneditstrconst.pp');
|
||||
T:=P.Targets.AddUnit('synedittextbase.pas');
|
||||
T:=P.Targets.AddUnit('synedittextbuffer.pp');
|
||||
T:=P.Targets.AddUnit('synedittextdoublewidthchars.pas');
|
||||
T:=P.Targets.AddUnit('synedittextbidichars.pas');
|
||||
T:=P.Targets.AddUnit('synedittexttabexpander.pas');
|
||||
T:=P.Targets.AddUnit('synedittexttrimmer.pas');
|
||||
T:=P.Targets.AddUnit('synedittypes.pp');
|
||||
@ -206,6 +209,9 @@ begin
|
||||
T:=P.Targets.AddUnit('synhighlighterbat.pas');
|
||||
T:=P.Targets.AddUnit('synhighlighterini.pas');
|
||||
T:=P.Targets.AddUnit('syneditmarkupspecialchar.pp');
|
||||
T:=P.Targets.AddUnit('synedittextdoublewidthchars.pas');
|
||||
T:=P.Targets.AddUnit('synedittextsystemcharwidth.pas');
|
||||
T:=P.Targets.AddUnit('syneditmarkupifdef.pp');
|
||||
|
||||
// copy the compiled file, so the IDE knows how the package was compiled
|
||||
P.InstallFiles.Add('SynEdit.compiled',AllOSes,'$(unitinstalldir)');
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
fpmake.pp for FCL 1.0.1
|
||||
|
||||
This file was generated on 08/21/12
|
||||
This file was generated on 23-12-2014
|
||||
}
|
||||
|
||||
{$ifndef ALLPACKAGES}
|
||||
@ -26,27 +26,26 @@ begin
|
||||
P.Version:='1.0.1';
|
||||
|
||||
{$ifdef ALLPACKAGES}
|
||||
// when this is part of a meta package, set here the sub directory
|
||||
P.Directory:='packager/registration/';
|
||||
{$endif ALLPACKAGES}
|
||||
P.SupportBuildModes := [bmBuildUnit];
|
||||
|
||||
P.Dependencies.Add('fcl-process');
|
||||
P.Dependencies.Add('fcl-db');
|
||||
|
||||
P.Options.Add('-MObjFPC');
|
||||
P.Options.Add('-Scghi');
|
||||
P.Options.Add('-O1');
|
||||
P.Options.Add('-g');
|
||||
P.Options.Add('-gl');
|
||||
P.Options.Add('-vewnhi');
|
||||
P.Options.Add('-l');
|
||||
P.Options.Add('-Fu.');
|
||||
P.Options.Add('-vewnhibq');
|
||||
P.UnitPath.Add('.');
|
||||
T:=P.Targets.AddUnit('fcllaz.pas');
|
||||
t.Dependencies.AddUnit('registerfcl');
|
||||
|
||||
//P.Sources.AddSrc('lazaruspackageintf.pas');
|
||||
P.Sources.AddSrc('lazaruspackageintf.pas');
|
||||
T:=P.Targets.AddUnit('registerfcl.pas');
|
||||
T:=P.Targets.AddUnit('lazaruspackageintf.pas');
|
||||
|
||||
// copy the compiled file, so the IDE knows how the package was compiled
|
||||
P.InstallFiles.Add('FCL.compiled',AllOSes,'$(unitinstalldir)');
|
||||
|
||||
end;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user