GDBMIDebugger: prepare new package

git-svn-id: trunk@44101 -
This commit is contained in:
martin 2014-02-16 21:35:24 +00:00
parent 180211b187
commit 7b45286e2d
6 changed files with 2836 additions and 0 deletions

5
.gitattributes vendored
View File

@ -2001,6 +2001,11 @@ components/lazcontrols/listfilteredit.pas svneol=native#text/plain
components/lazcontrols/lvlgraphctrl.pas svneol=native#text/plain
components/lazcontrols/shortpathedit.pas svneol=native#text/plain
components/lazcontrols/treefilteredit.pas svneol=native#text/plain
components/lazdebuggergdbmi/Makefile svneol=native#text/plain
components/lazdebuggergdbmi/Makefile.compiled svneol=native#text/plain
components/lazdebuggergdbmi/Makefile.fpc svneol=native#text/plain
components/lazdebuggergdbmi/lazdebuggergdbmi.lpk svneol=native#text/plain
components/lazdebuggergdbmi/lazdebuggergdbmi.pas svneol=native#text/pascal
components/lazreport/doc/contributors.txt svneol=native#text/plain
components/lazreport/doc/fr_eng.odt -text
components/lazreport/doc/fr_eng.pdf -text

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<CONFIG>
<Makefile Value="2"/>
<Params Value=" -Fu../../packager/units/$(CPU_TARGET)-$(OS_TARGET);. -MObjFPC -Scghi -O1 -g -gl -vewnhi -l lazdebuggergdbmi.pas"/>
</CONFIG>

View File

@ -0,0 +1,55 @@
# File generated automatically by Lazarus Package Manager
#
# Makefile.fpc for LazDebuggerGdbmi 0.0
#
# This file was generated on 16/02/2014
[package]
name=lazdebuggergdbmi
version=0.0
[compiler]
unittargetdir=lib/$(CPU_TARGET)-$(OS_TARGET)
unitdir=../../packager/units/$(CPU_TARGET)-$(OS_TARGET) .
options= -MObjFPC -Scghi -O1 -g -gl -vewnhi -l
[target]
units=lazdebuggergdbmi.pas
[clean]
files=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) \
$(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) \
$(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) \
$(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) \
$(wildcard $(COMPILER_UNITTARGETDIR)/*.res) \
$(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) \
$(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
[prerules]
# LCL Platform
ifndef LCL_PLATFORM
ifeq ($(OS_TARGET),win32)
LCL_PLATFORM=win32
else
ifeq ($(OS_TARGET),win64)
LCL_PLATFORM=win32
else
ifeq ($(OS_TARGET),darwin)
LCL_PLATFORM=carbon
else
LCL_PLATFORM=gtk2
endif
endif
endif
endif
export LCL_PLATFORM
[rules]
.PHONY: cleartarget compiled all
cleartarget:
-$(DEL) $(COMPILER_UNITTARGETDIR)/lazdebuggergdbmi$(PPUEXT)
compiled:
$(CPPROG) -f Makefile.compiled $(COMPILER_UNITTARGETDIR)/LazDebuggerGdbmi.compiled
all: cleartarget $(COMPILER_UNITTARGETDIR) lazdebuggergdbmi$(PPUEXT) compiled

View File

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<CONFIG>
<Package Version="4">
<PathDelim Value="\"/>
<Name Value="LazDebuggerGdbmi"/>
<CompilerOptions>
<Version Value="11"/>
<PathDelim Value="\"/>
<SearchPaths>
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)\"/>
</SearchPaths>
<Other>
<CompilerMessages>
<MsgFileName Value=""/>
</CompilerMessages>
<CompilerPath Value="$(CompPath)"/>
</Other>
</CompilerOptions>
<Type Value="RunAndDesignTime"/>
<RequiredPkgs Count="1">
<Item1>
<PackageName Value="FCL"/>
</Item1>
</RequiredPkgs>
<UsageOptions>
<UnitPath Value="$(PkgOutDir)"/>
</UsageOptions>
<PublishOptions>
<Version Value="2"/>
</PublishOptions>
</Package>
</CONFIG>

View File

@ -0,0 +1,20 @@
{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
}
unit LazDebuggerGdbmi;
interface
uses
LazarusPackageIntf;
implementation
procedure Register;
begin
end;
initialization
RegisterPackage('LazDebuggerGdbmi', @Register);
end.