fpc/compiler/comprsrc.pas
2000-06-25 19:08:27 +00:00

160 lines
4.1 KiB
ObjectPascal

{
$Id$
Copyright (c) 1998-2000 by Florian Klaempfl
Handles the resource files handling
This program 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 program 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.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
****************************************************************************
}
unit comprsrc;
interface
type
presourcefile=^tresourcefile;
tresourcefile=object
private
fname : string;
public
constructor Init(const fn:string);
destructor Done;
procedure Compile;virtual;
end;
procedure CompileResourceFiles;
implementation
uses
{$ifdef Delphi}
dmisc,
{$else Delphi}
dos,
{$endif Delphi}
Systems,Globtype,Globals,Verbose,Files,
Script;
{****************************************************************************
TRESOURCEFILE
****************************************************************************}
constructor tresourcefile.init(const fn:string);
begin
fname:=fn;
end;
destructor tresourcefile.done;
begin
end;
procedure tresourcefile.compile;
var
s,
resobj,
respath,
resbin : string;
resfound : boolean;
begin
if utilsdirectory<>'' then
respath:=FindFile(target_res.resbin+source_os.exeext,utilsdirectory,resfound)
else
respath:=FindExe(target_res.resbin,resfound);
resbin:=respath+target_res.resbin+source_os.exeext;
if (not resfound) and not(cs_link_extern in aktglobalswitches) then
begin
Message(exec_w_res_not_found);
aktglobalswitches:=aktglobalswitches+[cs_link_extern];
end;
resobj:=ForceExtension(current_module^.objfilename^,target_info.resobjext);
s:=target_res.rescmd;
Replace(s,'$OBJ',resobj);
Replace(s,'$RES',fname);
Replace(s,'$INC',respath);
{ Exec the command }
if not (cs_link_extern in aktglobalswitches) then
begin
Message1(exec_i_compilingresource,fname);
swapvectors;
exec(resbin,s);
swapvectors;
if (doserror<>0) then
begin
Message(exec_w_cant_call_linker);
aktglobalswitches:=aktglobalswitches+[cs_link_extern];
end
else
if (dosexitcode<>0) then
begin
Message(exec_w_error_while_linking);
aktglobalswitches:=aktglobalswitches+[cs_link_extern];
end;
end;
{ Update asmres when externmode is set }
if cs_link_extern in aktglobalswitches then
AsmRes.AddLinkCommand(resbin,s,'');
current_module^.linkotherofiles.insert(resobj,link_allways);
end;
procedure CompileResourceFiles;
var
hr : presourcefile;
begin
(* OS/2 (EMX) must be processed elsewhere (in the linking/binding stage). *)
if target_info.target <> target_i386_os2 then
While not Current_module^.ResourceFiles.Empty do
begin
case target_info.target of
target_i386_win32:
hr:=new(presourcefile,init(Current_module^.ResourceFiles.get));
else
Message(scan_e_resourcefiles_not_supported);
end;
hr^.compile;
dispose(hr,done);
end;
end;
end.
{
$Log$
Revision 1.12 2000-06-25 19:08:28 hajny
+ $R support for OS/2 (EMX) added
Revision 1.11 2000/06/23 20:11:05 peter
* made resourcecompiling object so it can be inherited and replaced
for other targets if needed
Revision 1.10 2000/02/09 13:22:50 peter
* log truncated
Revision 1.9 2000/01/07 01:14:23 peter
* updated copyright to 2000
Revision 1.8 1999/12/01 12:42:32 peter
* fixed bug 698
* removed some notes about unused vars
Revision 1.7 1999/11/12 11:03:50 peter
* searchpaths changed to stringqueue object
}