mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-11-02 06:39:36 +01:00
fpmake: Re-generated fpmake.pp file
git-svn-id: trunk@47249 -
This commit is contained in:
parent
b419b6d234
commit
3086ab61cf
2
.gitattributes
vendored
2
.gitattributes
vendored
@ -1144,6 +1144,7 @@ components/debuggerintf/dbgintfdebuggerbase.pp svneol=native#text/pascal
|
||||
components/debuggerintf/dbgintfmiscclasses.pas svneol=native#text/pascal
|
||||
components/debuggerintf/debuggerintf.lpk svneol=native#text/plain
|
||||
components/debuggerintf/debuggerintf.pas svneol=native#text/pascal
|
||||
components/debuggerintf/fpmake.pp svneol=native#text/plain
|
||||
components/editortoolbar/Makefile svneol=native#text/plain
|
||||
components/editortoolbar/Makefile.compiled svneol=native#text/plain
|
||||
components/editortoolbar/Makefile.fpc svneol=native#text/plain
|
||||
@ -2057,6 +2058,7 @@ components/lazdebuggergdbmi/Makefile.compiled svneol=native#text/plain
|
||||
components/lazdebuggergdbmi/Makefile.fpc svneol=native#text/plain
|
||||
components/lazdebuggergdbmi/cmdlinedebugger.pp svneol=native#text/pascal
|
||||
components/lazdebuggergdbmi/debugutils.pp svneol=native#text/pascal
|
||||
components/lazdebuggergdbmi/fpmake.pp svneol=native#text/plain
|
||||
components/lazdebuggergdbmi/gdbmidebugger.pp svneol=native#text/pascal
|
||||
components/lazdebuggergdbmi/gdbmidebuginstructions.pp svneol=native#text/pascal
|
||||
components/lazdebuggergdbmi/gdbmimiscclasses.pp svneol=native#text/pascal
|
||||
|
||||
68
components/debuggerintf/fpmake.pp
Normal file
68
components/debuggerintf/fpmake.pp
Normal file
@ -0,0 +1,68 @@
|
||||
{
|
||||
File generated automatically by Lazarus Package Manager
|
||||
|
||||
fpmake.pp for DebuggerIntf 0.1
|
||||
|
||||
This file was generated on 25-12-2014
|
||||
}
|
||||
|
||||
{$ifndef ALLPACKAGES}
|
||||
{$mode objfpc}{$H+}
|
||||
program fpmake;
|
||||
|
||||
uses fpmkunit;
|
||||
{$endif ALLPACKAGES}
|
||||
|
||||
procedure add_DebuggerIntf;
|
||||
|
||||
var
|
||||
P : TPackage;
|
||||
T : TTarget;
|
||||
|
||||
begin
|
||||
with Installer do
|
||||
begin
|
||||
P:=AddPAckage('debuggerintf');
|
||||
P.Version:='0.1';
|
||||
|
||||
{$ifdef ALLPACKAGES}
|
||||
// when this is part of a meta package, set here the sub directory
|
||||
P.Directory:='components' + PathDelim + 'debuggerintf';
|
||||
{$endif ALLPACKAGES}
|
||||
|
||||
P.Dependencies.Add('lclbase');
|
||||
P.Options.Add('-MObjFPC');
|
||||
P.Options.Add('-Scghi');
|
||||
P.Options.Add('-O1');
|
||||
P.Options.Add('-g');
|
||||
P.Options.Add('-gl');
|
||||
P.Options.Add('-l');
|
||||
P.Options.Add('-vw-');
|
||||
P.Options.Add('-vh-');
|
||||
P.Options.Add('-venibq');
|
||||
P.Options.Add('-vm4046');
|
||||
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('.');
|
||||
T:=P.Targets.AddUnit('debuggerintf.pas');
|
||||
t.Dependencies.AddUnit('dbgintfbasetypes');
|
||||
t.Dependencies.AddUnit('dbgintfdebuggerbase');
|
||||
t.Dependencies.AddUnit('dbgintfmiscclasses');
|
||||
|
||||
T:=P.Targets.AddUnit('dbgintfbasetypes.pas');
|
||||
T:=P.Targets.AddUnit('dbgintfdebuggerbase.pp');
|
||||
T:=P.Targets.AddUnit('dbgintfmiscclasses.pas');
|
||||
|
||||
// copy the compiled file, so the IDE knows how the package was compiled
|
||||
P.InstallFiles.Add('DebuggerIntf.compiled',AllOSes,'$(unitinstalldir)');
|
||||
|
||||
end;
|
||||
end;
|
||||
|
||||
{$ifndef ALLPACKAGES}
|
||||
begin
|
||||
add_DebuggerIntf;
|
||||
Installer.Run;
|
||||
end.
|
||||
{$endif ALLPACKAGES}
|
||||
87
components/lazdebuggergdbmi/fpmake.pp
Normal file
87
components/lazdebuggergdbmi/fpmake.pp
Normal file
@ -0,0 +1,87 @@
|
||||
{
|
||||
File generated automatically by Lazarus Package Manager
|
||||
|
||||
fpmake.pp for LazDebuggerGdbmi 0.1
|
||||
|
||||
This file was generated on 23-12-2014
|
||||
}
|
||||
|
||||
{$ifndef ALLPACKAGES}
|
||||
{$mode objfpc}{$H+}
|
||||
program fpmake;
|
||||
|
||||
uses fpmkunit;
|
||||
{$endif ALLPACKAGES}
|
||||
|
||||
procedure add_LazDebuggerGdbmi;
|
||||
|
||||
var
|
||||
P : TPackage;
|
||||
T : TTarget;
|
||||
|
||||
begin
|
||||
with Installer do
|
||||
begin
|
||||
P:=AddPAckage('lazdebuggergdbmi');
|
||||
P.Version:='0.1';
|
||||
|
||||
{$ifdef ALLPACKAGES}
|
||||
// when this is part of a meta package, set here the sub directory
|
||||
P.Directory:='components/lazdebuggergdbmi';
|
||||
{$endif ALLPACKAGES}
|
||||
|
||||
P.Dependencies.Add('ideintf');
|
||||
P.Dependencies.Add('debuggerintf');
|
||||
P.Options.Add('-MObjFPC');
|
||||
P.Options.Add('-Scghi');
|
||||
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('../debuggerintf/lib/$(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('../ideintf/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)');
|
||||
P.UnitPath.Add('.');
|
||||
T:=P.Targets.AddUnit('lazdebuggergdbmi.pas');
|
||||
t.Dependencies.AddUnit('cmdlinedebugger');
|
||||
t.Dependencies.AddUnit('debugutils');
|
||||
t.Dependencies.AddUnit('gdbtypeinfo');
|
||||
t.Dependencies.AddUnit('gdbmimiscclasses');
|
||||
t.Dependencies.AddUnit('ideminilibc');
|
||||
t.Dependencies.AddUnit('gdbmidebugger');
|
||||
t.Dependencies.AddUnit('gdbmidebuginstructions');
|
||||
t.Dependencies.AddUnit('gdbmiserverdebugger');
|
||||
t.Dependencies.AddUnit('sshgdbmidebugger');
|
||||
t.Dependencies.AddUnit('gdbmistringconstants');
|
||||
|
||||
T:=P.Targets.AddUnit('cmdlinedebugger.pp');
|
||||
T:=P.Targets.AddUnit('debugutils.pp');
|
||||
T:=P.Targets.AddUnit('gdbtypeinfo.pp');
|
||||
T:=P.Targets.AddUnit('gdbmimiscclasses.pp');
|
||||
T:=P.Targets.AddUnit('ideminilibc.pas');
|
||||
T:=P.Targets.AddUnit('gdbmidebugger.pp');
|
||||
T:=P.Targets.AddUnit('gdbmidebuginstructions.pp');
|
||||
T:=P.Targets.AddUnit('gdbmiserverdebugger.pas');
|
||||
T:=P.Targets.AddUnit('sshgdbmidebugger.pas');
|
||||
T:=P.Targets.AddUnit('gdbmistringconstants.pas');
|
||||
|
||||
// copy the compiled file, so the IDE knows how the package was compiled
|
||||
P.InstallFiles.Add('LazDebuggerGdbmi.compiled',AllOSes,'$(unitinstalldir)');
|
||||
|
||||
end;
|
||||
end;
|
||||
|
||||
{$ifndef ALLPACKAGES}
|
||||
begin
|
||||
add_LazDebuggerGdbmi;
|
||||
Installer.Run;
|
||||
end.
|
||||
{$endif ALLPACKAGES}
|
||||
Loading…
Reference in New Issue
Block a user