lazarus/ide/basebuildmanager.pas
mattias 5f4f03d6e9 IDE: using new codetools FPC caches
IDE: fixed macro FPCVer for multiple versions used by fpc.exe
IDE: fixed rescan of FPC sources if not changed, bug #16824
codetools: replaced fpc source heuristic with rule set, needed for bug #13912, #14572
IDE: fixed unneeded rescan of fpc sources if only target changed, needed for 12828
IDE: fixed calling compiler on every start, needed by lazarus on a stick
codetools: fixed search for fpc units without ppu, needed for 15534
IDE: implemented cache for fpc include files, needed by debugger
lazbuild: fixed using non default lclwidgettype of lpi
IDE: fixed auto update if fpc.cfg or target compiler changed, needed for 16824

git-svn-id: trunk@26796 -
2010-07-24 08:12:27 +00:00

97 lines
3.8 KiB
ObjectPascal

{ $Id: helpmanager.pas 9796 2006-09-02 21:10:32Z mattias $ }
{
/***************************************************************************
buildmanager.pas
----------------
***************************************************************************/
***************************************************************************
* *
* This source is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This code is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* General Public License for more details. *
* *
* A copy of the GNU General Public License is available on the World *
* Wide Web at <http://www.gnu.org/copyleft/gpl.html>. You can also *
* obtain it by writing to the Free Software Foundation, *
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
* *
***************************************************************************
}
unit BaseBuildManager;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Forms,
Project;
type
{ TBaseBuildManager }
TBaseBuildManager = class(TComponent)
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
function GetTargetOS(UseCache: boolean): string; virtual; abstract;
function GetTargetCPU(UseCache: boolean): string; virtual; abstract;
function GetLCLWidgetType(UseCache: boolean): string; virtual; abstract;
function GetRunCommandLine: string; virtual; abstract;
function GetProjectPublishDir: string; virtual; abstract;
function GetProjectTargetFilename(aProject: TProject): string; virtual; abstract;
function GetProjectUsesAppBundle: Boolean; virtual; abstract;
function GetTestProjectFilename(aProject: TProject): string; virtual; abstract;
function GetTestUnitFilename(AnUnitInfo: TUnitInfo): string; virtual; abstract;
function GetTestBuildDirectory: string; virtual; abstract;
function IsTestUnitFilename(const AFilename: string): boolean; virtual; abstract;
function GetTargetUnitFilename(AnUnitInfo: TUnitInfo): string; virtual; abstract;
function CheckAmbiguousSources(const AFilename: string;
Compiling: boolean): TModalResult; virtual; abstract;
function DeleteAmbiguousFiles(const Filename:string
): TModalResult; virtual; abstract;
function CheckUnitPathForAmbiguousPascalFiles(const BaseDir, TheUnitPath,
CompiledExt, ContextDescription: string
): TModalResult; virtual; abstract;
function CreateProjectApplicationBundle: Boolean; virtual; abstract;
function BackupFile(const Filename: string): TModalResult; virtual; abstract;
function UpdateProjectAutomaticFiles(TestDir: string): TModalResult; virtual; abstract;
end;
var
BuildBoss: TBaseBuildManager = nil;
implementation
{ TBaseBuildManager }
constructor TBaseBuildManager.Create(AOwner: TComponent);
begin
BuildBoss:=Self;
inherited Create(AOwner);
end;
destructor TBaseBuildManager.Destroy;
begin
inherited Destroy;
BuildBoss:=nil;
end;
end.