* Add helper unit to force building all units when using FPC 3.0.4

git-svn-id: trunk@60510 -
This commit is contained in:
michael 2019-02-26 08:11:22 +00:00
parent 6e23c3ccd0
commit f4fcd99a03
4 changed files with 42 additions and 2 deletions

1
.gitattributes vendored
View File

@ -1619,6 +1619,7 @@ components/fpreport/fpreportpreview.pas svneol=native#text/plain
components/fpreport/fpreportprinterexport.pas svneol=native#text/plain
components/fpreport/lclfpreport.lpk svneol=native#text/plain
components/fpreport/lclfpreport.pas svneol=native#text/plain
components/fpreport/lclfpreportbuild.pp svneol=native#text/plain
components/fpvectorial/avisocncgcodereader.pas svneol=native#text/plain
components/fpvectorial/avisocncgcodewriter.pas svneol=native#text/plain
components/fpvectorial/avisozlib.pas svneol=native#text/plain

View File

@ -10,7 +10,7 @@
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
</SearchPaths>
</CompilerOptions>
<Files Count="12">
<Files Count="13">
<Item1>
<Filename Value="cfgfpreportimageexport.lfm"/>
<Type Value="LFM"/>
@ -59,6 +59,10 @@
<Filename Value="cfgfpreporthtmlexport.pp"/>
<UnitName Value="cfgfpreporthtmlexport"/>
</Item12>
<Item13>
<Filename Value="lclfpreportbuild.pp"/>
<UnitName Value="lclfpreportbuild"/>
</Item13>
</Files>
<RequiredPkgs Count="3">
<Item1>

View File

@ -10,7 +10,7 @@ interface
uses
cfgfpreportimageexport, cfgfpreportpdfexport, fpreportformexport,
fpreportlclexport, fpreportprinterexport, fpreportpreview, dlginputcombo,
cfgfpreporthtmlexport, LazarusPackageIntf;
cfgfpreporthtmlexport, lclfpreportbuild, LazarusPackageIntf;
implementation

View File

@ -0,0 +1,35 @@
unit lclfpreportbuild;
{
This is a unit just to force the IDE to build all fpreport units
}
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils,
fpreporthtmlutil,
fpreporthtmlparser,
fpreportstreamer,
fpreport,
fpreportdb,
fpreportdom,
fpreportcanvashelper,
fpreportcontnr,
fpreportbarcode,
fpreportqrcode,
fpreportdatacsv,
fpreportdatadbf,
fpreportdatajson,
fpreportdata,
fpreportjson,
fpreportdatasqldb,
fpreportfpimageexport,
fpreporthtmlexport,
fpreportpdfexport;
implementation
end.