mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-19 00:49:09 +02:00
* Fix compilation
git-svn-id: trunk@48165 -
This commit is contained in:
parent
8618a3b21f
commit
4c22d66aac
@ -44,15 +44,8 @@ Const
|
|||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
Uses XMLRead, XMLWrite;
|
Uses fpdocstrs, XMLRead, XMLWrite;
|
||||||
|
|
||||||
Resourcestring
|
|
||||||
SErrInvalidRootNode = 'Invalid options root node: Got "%s", expected "docproject"';
|
|
||||||
SErrNoPackagesNode = 'No "packages" node found in docproject';
|
|
||||||
SErrNoInputFile = 'unit tag without file attribute found';
|
|
||||||
SErrNoDescrFile = 'description tag without file attribute';
|
|
||||||
SErrNoImportFile = 'Import tag without file attribute';
|
|
||||||
SErrNoImportPrefix = 'Import tag without prefix attribute';
|
|
||||||
|
|
||||||
{ TXMLFPDocOptions }
|
{ TXMLFPDocOptions }
|
||||||
|
|
||||||
|
@ -70,6 +70,9 @@ begin
|
|||||||
T.install:=false;
|
T.install:=false;
|
||||||
T.ResourceStrings:=true;
|
T.ResourceStrings:=true;
|
||||||
|
|
||||||
|
T := P.Targets.AddUnit('dglobals.pp');
|
||||||
|
T.install:=false;
|
||||||
|
|
||||||
T := P.Targets.AddUnit('dwriter.pp');
|
T := P.Targets.AddUnit('dwriter.pp');
|
||||||
T.install:=false;
|
T.install:=false;
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ program MakeSkel;
|
|||||||
{$h+}
|
{$h+}
|
||||||
|
|
||||||
uses
|
uses
|
||||||
SysUtils, Classes, Gettext, dGlobals, PasTree, PParser,PScanner;
|
fpdocstrs, SysUtils, Classes, Gettext, dGlobals, PasTree, PParser,PScanner;
|
||||||
|
|
||||||
resourcestring
|
resourcestring
|
||||||
STitle = 'MakeSkel - FPDoc skeleton XML description file generator';
|
STitle = 'MakeSkel - FPDoc skeleton XML description file generator';
|
||||||
|
Loading…
Reference in New Issue
Block a user