forked from dliw/fpCEF3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 50c526f
Showing
20 changed files
with
18,512 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
backup/ | ||
lib/ | ||
*.lps | ||
*.[oa] | ||
*.exe | ||
*.res | ||
.directory | ||
gmon.out | ||
ppas.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
<?xml version="1.0"?> | ||
<CONFIG> | ||
<Package Version="4"> | ||
<Name Value="CEF3"/> | ||
<Author Value="d.l.i.w <[email protected]>"/> | ||
<CompilerOptions> | ||
<Version Value="11"/> | ||
<SearchPaths> | ||
<IncludeFiles Value=".."/> | ||
<OtherUnitFiles Value=".."/> | ||
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/> | ||
</SearchPaths> | ||
<Parsing> | ||
<SyntaxOptions> | ||
<AllowLabel Value="False"/> | ||
</SyntaxOptions> | ||
</Parsing> | ||
<Other> | ||
<CompilerMessages> | ||
<MsgFileName Value=""/> | ||
</CompilerMessages> | ||
<CompilerPath Value="$(CompPath)"/> | ||
</Other> | ||
</CompilerOptions> | ||
<Description Value="Chromium component for Lazarus"/> | ||
<Version Minor="1"/> | ||
<Files Count="7"> | ||
<Item1> | ||
<Filename Value="cef3lcl.pas"/> | ||
<HasRegisterProc Value="True"/> | ||
<UnitName Value="cef3lcl"/> | ||
</Item1> | ||
<Item2> | ||
<Filename Value="../cef.inc"/> | ||
<Type Value="Include"/> | ||
</Item2> | ||
<Item3> | ||
<Filename Value="../cef3api.pas"/> | ||
<UnitName Value="cef3api"/> | ||
</Item3> | ||
<Item4> | ||
<Filename Value="../cef3api_static.pas"/> | ||
<UnitName Value="cef3api_static"/> | ||
</Item4> | ||
<Item5> | ||
<Filename Value="../cef3class.pas"/> | ||
<UnitName Value="cef3class"/> | ||
</Item5> | ||
<Item6> | ||
<Filename Value="../cef3gui.pas"/> | ||
<UnitName Value="cef3gui"/> | ||
</Item6> | ||
<Item7> | ||
<Filename Value="../cef3intf.pas"/> | ||
<UnitName Value="cef3intf"/> | ||
</Item7> | ||
</Files> | ||
<Type Value="RunAndDesignTime"/> | ||
<RequiredPkgs Count="3"> | ||
<Item1> | ||
<PackageName Value="LCL"/> | ||
</Item1> | ||
<Item2> | ||
<PackageName Value="LCLBase"/> | ||
</Item2> | ||
<Item3> | ||
<PackageName Value="FCL"/> | ||
</Item3> | ||
</RequiredPkgs> | ||
<UsageOptions> | ||
<UnitPath Value="$(PkgOutDir)"/> | ||
</UsageOptions> | ||
<PublishOptions> | ||
<Version Value="2"/> | ||
</PublishOptions> | ||
</Package> | ||
</CONFIG> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ This file was automatically created by Lazarus. Do not edit! | ||
This source is only used to compile and install the package. | ||
} | ||
|
||
unit CEF3; | ||
|
||
interface | ||
|
||
uses | ||
cef3lcl, cef3api, cef3api_static, cef3class, cef3gui, cef3intf, | ||
LazarusPackageIntf; | ||
|
||
implementation | ||
|
||
procedure Register; | ||
begin | ||
RegisterUnit('cef3lcl', @cef3lcl.Register); | ||
end; | ||
|
||
initialization | ||
RegisterPackage('CEF3', @Register); | ||
end. |
Oops, something went wrong.