Skip to content

Commit

Permalink
Package for FCGI base files to simplify adding them to FCGI app in La…
Browse files Browse the repository at this point in the history
…zarus.
  • Loading branch information
macpgmr committed Sep 29, 2012
1 parent a656f0f commit 729f5aa
Show file tree
Hide file tree
Showing 2 changed files with 81 additions and 0 deletions.
61 changes: 61 additions & 0 deletions fcgiapp_pkg.lpk
@@ -0,0 +1,61 @@
<?xml version="1.0"?>
<CONFIG>
<Package Version="4">
<Name Value="fcgiapp_pkg"/>
<CompilerOptions>
<Version Value="11"/>
<SearchPaths>
<UnitOutputDirectory Value="units/$(TargetCPU)-$(TargetOS)"/>
</SearchPaths>
<Parsing>
<SyntaxOptions>
<SyntaxMode Value="Delphi"/>
<CStyleOperator Value="False"/>
<AllowLabel Value="False"/>
<CPPInline Value="False"/>
<CStyleMacros Value="True"/>
<UseAnsiStrings Value="False"/>
</SyntaxOptions>
</Parsing>
<Other>
<CompilerMessages>
<MsgFileName Value=""/>
</CompilerMessages>
<CompilerPath Value="$(CompPath)"/>
</Other>
</CompilerOptions>
<Description Value="Base files for creating an FCGI Web server app; obtain files from ExtPascal project: http://code.google.com/p/extpascal/"/>
<License Value="Same as ExtPascal."/>
<Version Major="1"/>
<Files Count="4">
<Item1>
<Filename Value="FCGIApp.pas"/>
<UnitName Value="FCGIApp"/>
</Item1>
<Item2>
<Filename Value="BlockSocket.pas"/>
<UnitName Value="BlockSocket"/>
</Item2>
<Item3>
<Filename Value="ExtPascalClasses.pas"/>
<UnitName Value="ExtPascalClasses"/>
</Item3>
<Item4>
<Filename Value="ExtPascalUtils.pas"/>
<UnitName Value="ExtPascalUtils"/>
</Item4>
</Files>
<Type Value="RunAndDesignTime"/>
<RequiredPkgs Count="1">
<Item1>
<PackageName Value="FCL"/>
</Item1>
</RequiredPkgs>
<UsageOptions>
<UnitPath Value="$(PkgOutDir)"/>
</UsageOptions>
<PublishOptions>
<Version Value="2"/>
</PublishOptions>
</Package>
</CONFIG>
20 changes: 20 additions & 0 deletions fcgiapp_pkg.pas
@@ -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 fcgiapp_pkg;

interface

uses
FCGIApp, BlockSocket, ExtPascalClasses, ExtPascalUtils, LazarusPackageIntf;

implementation

procedure Register;
begin
end;

initialization
RegisterPackage('fcgiapp_pkg', @Register);
end.

0 comments on commit 729f5aa

Please sign in to comment.