* delete package skeleton that was an attempt to isolate winunits

git-svn-id: trunk@13901 -
This commit is contained in:
marco 2009-10-17 18:37:51 +00:00
parent 3b3aa74731
commit deb65efd5d
5 changed files with 0 additions and 2835 deletions

4
.gitattributes vendored
View File

@ -5087,10 +5087,6 @@ packages/winunits-base/tests/hhex2.pp svneol=native#text/pascal
packages/winunits-base/tests/testcom1.pp svneol=native#text/plain
packages/winunits-base/tests/testcom2.pp svneol=native#text/plain
packages/winunits-base/tests/testver.pp svneol=native#text/plain
packages/winunits-com/Makefile svneol=native#text/plain
packages/winunits-com/Makefile.fpc svneol=native#text/plain
packages/winunits-com/fpmake.pp svneol=native#text/pascal
packages/winunits-com/src/buildwinunitscom.pp svneol=native#text/pascal
packages/winunits-jedi/Makefile svneol=native#text/plain
packages/winunits-jedi/Makefile.fpc svneol=native#text/plain
packages/winunits-jedi/fpmake.pp svneol=native#text/plain

File diff suppressed because it is too large Load Diff

View File

@ -1,31 +0,0 @@
#
# Makefile.fpc for WinUnits
#
[package]
name=winunits-com
version=2.5.1
[target]
units=buildwinunitscom
implicitunits=comobj comserv
examples=examples
rsts =
[install]
buildunit=buildwinunitscom
fpcpackage=y
[default]
fpcdir=../..
[compiler]
options=-Ur
sourcedir=src
[rules]
.NOTPARALLEL:

View File

@ -1,53 +0,0 @@
{$ifndef ALLPACKAGES}
{$mode objfpc}{$H+}
program fpmake;
uses fpmkunit;
Var
T : TTarget;
P : TPackage;
begin
With Installer do
begin
{$endif ALLPACKAGES}
P:=AddPackage('winunits-com');
{$ifdef ALLPACKAGES}
P.Directory:='winunits-com';
{$endif ALLPACKAGES}
P.Version:='2.4.0-0';
P.OSes:=[win32,win64];
P.Author := 'Florian Klaempfl, Marco van de Voort';
P.License := 'LGPL with modification, ';
P.HomepageURL := 'www.freepascal.org';
P.Email := '';
P.Description := 'COM related units that need FCL';
P.NeedLibC:= true;
P.SourcePath.Add('src');
P.IncludePath.Add('src');
T:=P.Targets.AddUnit('buildwinunitscom.pp');
T.Install:=False;
with T.Dependencies do
begin
AddUnit('comobj');
AddUnit('comserv');
end;
T:=P.Targets.AddImplicitUnit('comobj.pp');
T:=P.Targets.AddImplicitUnit('comserv.pp');
P.ExamplePath.Add('examples/');
P.Targets.AddExampleProgram('testcom1.pp');
P.Targets.AddExampleProgram('OOTest.pp');
P.Targets.AddExampleProgram('OOHelper.pp');
P.Targets.AddExampleProgram('testver.pp');
P.Targets.AddExampleProgram('testcom2.pp');
{$ifndef ALLPACKAGES}
Run;
end;
end.
{$endif ALLPACKAGES}

View File

@ -1,28 +0,0 @@
{
Dummy unit to compile everything in one go
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
}
unit buildwinunitscom;
interface
uses
comobj,comserv;
implementation
end.