mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-02 04:23:39 +02:00
26 lines
360 B
ObjectPascal
26 lines
360 B
ObjectPascal
unit FppkgIntf;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes,
|
|
SysUtils;
|
|
|
|
type
|
|
TFppkgInterface = class
|
|
protected
|
|
function GetInstallFPMakeDependencies: Boolean; virtual; abstract;
|
|
public
|
|
property InstallFPMakeDependencies: Boolean read GetInstallFPMakeDependencies;
|
|
end;
|
|
|
|
var
|
|
FppkgInterface: TFppkgInterface = nil;
|
|
|
|
implementation
|
|
|
|
end.
|
|
|