delete lpk files

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1578 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
yangjixian
2011-04-18 16:44:23 +00:00
parent 2c08ce8b53
commit 1f24c85aaf
2 changed files with 0 additions and 73 deletions

View File

@ -1,52 +0,0 @@
<?xml version="1.0"?>
<CONFIG>
<Package Version="2">
<PathDelim Value="\"/>
<Name Value="LazColorPalette2"/>
<Author Value="Tom Gregorovic (_tom_@centrum.cz)"/>
<CompilerOptions>
<Version Value="5"/>
<PathDelim Value="\"/>
<SearchPaths>
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)\"/>
</SearchPaths>
<CodeGeneration>
<Generate Value="Faster"/>
</CodeGeneration>
<Other>
<CompilerPath Value="$(CompPath)"/>
</Other>
</CompilerOptions>
<Description Value="This package contains color palette component."/>
<License Value="Modified LGPL"/>
<Version Minor="1"/>
<Files Count="2">
<Item1>
<Filename Value="colorpalette.lrs"/>
<Type Value="LRS"/>
</Item1>
<Item2>
<Filename Value="colorpalette.pas"/>
<HasRegisterProc Value="True"/>
<UnitName Value="ColorPalette"/>
</Item2>
</Files>
<Type Value="RunAndDesignTime"/>
<RequiredPkgs Count="2">
<Item1>
<PackageName Value="LCL"/>
</Item1>
<Item2>
<PackageName Value="FCL"/>
<MinVersion Major="1" Valid="True"/>
</Item2>
</RequiredPkgs>
<UsageOptions>
<UnitPath Value="$(PkgOutDir)\"/>
</UsageOptions>
<PublishOptions>
<Version Value="2"/>
<IgnoreBinaries Value="False"/>
</PublishOptions>
</Package>
</CONFIG>

View File

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