You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@71 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
85
components/virtualtreeview/linux/virtualtreeslcl.lpk
Normal file
85
components/virtualtreeview/linux/virtualtreeslcl.lpk
Normal file
@@ -0,0 +1,85 @@
|
||||
<?xml version="1.0"?>
|
||||
<CONFIG>
|
||||
<Package Version="2">
|
||||
<PathDelim Value="\"/>
|
||||
<Name Value="virtualtreeslcl"/>
|
||||
<Author Value="Joerg Thaler,Christian Ulrich"/>
|
||||
<CompilerOptions>
|
||||
<Version Value="5"/>
|
||||
<PathDelim Value="\"/>
|
||||
<SearchPaths>
|
||||
<IncludeFiles Value="..\"/>
|
||||
<OtherUnitFiles Value="..\"/>
|
||||
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/>
|
||||
</SearchPaths>
|
||||
<CodeGeneration>
|
||||
<Generate Value="Faster"/>
|
||||
</CodeGeneration>
|
||||
<Other>
|
||||
<CompilerPath Value="$(CompPath)"/>
|
||||
</Other>
|
||||
</CompilerOptions>
|
||||
<Description Value="Virtual Treeview
|
||||
"/>
|
||||
<License Value="The contents of this file are subject to the Mozilla Public License
|
||||
Version 1.1 (the "License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
|
||||
|
||||
Alternatively, you may redistribute this library, use and/or modify it under the terms of the
|
||||
GNU Lesser General Public License as published by the Free Software Foundation;
|
||||
either version 2.1 of the License, or (at your option) any later version.
|
||||
You may obtain a copy of the LGPL at http://www.gnu.org/copyleft/.
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
|
||||
specific language governing rights and limitations under the License.
|
||||
"/>
|
||||
<Version Major="4" Release="17" Build="20"/>
|
||||
<Files Count="6">
|
||||
<Item1>
|
||||
<Filename Value="..\VirtualTrees.lrs"/>
|
||||
<Type Value="LRS"/>
|
||||
</Item1>
|
||||
<Item2>
|
||||
<Filename Value="..\VirtualTrees.pas"/>
|
||||
<UnitName Value="VirtualTrees"/>
|
||||
</Item2>
|
||||
<Item3>
|
||||
<Filename Value="..\virtualdrawtree.pas"/>
|
||||
<UnitName Value="VirtualDrawTree"/>
|
||||
</Item3>
|
||||
<Item4>
|
||||
<Filename Value="..\virtualstringtree.pas"/>
|
||||
<UnitName Value="VirtualStringTree"/>
|
||||
</Item4>
|
||||
<Item5>
|
||||
<Filename Value="..\VTHeaderPopup.pas"/>
|
||||
<UnitName Value="VTHeaderPopup"/>
|
||||
</Item5>
|
||||
<Item6>
|
||||
<Filename Value="..\vtregister.pas"/>
|
||||
<HasRegisterProc Value="True"/>
|
||||
<UnitName Value="VTRegister"/>
|
||||
</Item6>
|
||||
</Files>
|
||||
<Type Value="DesignTime"/>
|
||||
<RequiredPkgs Count="2">
|
||||
<Item1>
|
||||
<PackageName Value="LCL"/>
|
||||
</Item1>
|
||||
<Item2>
|
||||
<PackageName Value="FCL"/>
|
||||
</Item2>
|
||||
</RequiredPkgs>
|
||||
<UsageOptions>
|
||||
<CustomOptions Value="-Facthreads
|
||||
"/>
|
||||
<UnitPath Value="$(PkgOutDir)\"/>
|
||||
</UsageOptions>
|
||||
<PublishOptions>
|
||||
<Version Value="2"/>
|
||||
<DestinationDirectory Value="$(TestDir)\publishedpackage\"/>
|
||||
<IgnoreBinaries Value="False"/>
|
||||
</PublishOptions>
|
||||
</Package>
|
||||
</CONFIG>
|
||||
22
components/virtualtreeview/linux/virtualtreeslcl.pas
Normal file
22
components/virtualtreeview/linux/virtualtreeslcl.pas
Normal file
@@ -0,0 +1,22 @@
|
||||
{ Diese Datei wurde automatisch von Lazarus erzeugt. Sie darf nicht bearbeitet werden!
|
||||
Dieser Quelltext dient nur dem Übersetzen und Installieren des Packages.
|
||||
}
|
||||
|
||||
unit virtualtreeslcl;
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
VirtualTrees, VirtualDrawTree, VirtualStringTree, VTHeaderPopup, VTRegister,
|
||||
LazarusPackageIntf;
|
||||
|
||||
implementation
|
||||
|
||||
procedure Register;
|
||||
begin
|
||||
RegisterUnit('VTRegister', @VTRegister.Register);
|
||||
end;
|
||||
|
||||
initialization
|
||||
RegisterPackage('virtualtreeslcl', @Register);
|
||||
end.
|
||||
Reference in New Issue
Block a user