mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-06 05:02:25 +02:00
* Add helper unit to force building all units when using FPC 3.0.4
git-svn-id: trunk@60510 -
This commit is contained in:
parent
6e23c3ccd0
commit
f4fcd99a03
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -1619,6 +1619,7 @@ components/fpreport/fpreportpreview.pas svneol=native#text/plain
|
|||||||
components/fpreport/fpreportprinterexport.pas svneol=native#text/plain
|
components/fpreport/fpreportprinterexport.pas svneol=native#text/plain
|
||||||
components/fpreport/lclfpreport.lpk svneol=native#text/plain
|
components/fpreport/lclfpreport.lpk svneol=native#text/plain
|
||||||
components/fpreport/lclfpreport.pas 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/avisocncgcodereader.pas svneol=native#text/plain
|
||||||
components/fpvectorial/avisocncgcodewriter.pas svneol=native#text/plain
|
components/fpvectorial/avisocncgcodewriter.pas svneol=native#text/plain
|
||||||
components/fpvectorial/avisozlib.pas svneol=native#text/plain
|
components/fpvectorial/avisozlib.pas svneol=native#text/plain
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
|
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
|
||||||
</SearchPaths>
|
</SearchPaths>
|
||||||
</CompilerOptions>
|
</CompilerOptions>
|
||||||
<Files Count="12">
|
<Files Count="13">
|
||||||
<Item1>
|
<Item1>
|
||||||
<Filename Value="cfgfpreportimageexport.lfm"/>
|
<Filename Value="cfgfpreportimageexport.lfm"/>
|
||||||
<Type Value="LFM"/>
|
<Type Value="LFM"/>
|
||||||
@ -59,6 +59,10 @@
|
|||||||
<Filename Value="cfgfpreporthtmlexport.pp"/>
|
<Filename Value="cfgfpreporthtmlexport.pp"/>
|
||||||
<UnitName Value="cfgfpreporthtmlexport"/>
|
<UnitName Value="cfgfpreporthtmlexport"/>
|
||||||
</Item12>
|
</Item12>
|
||||||
|
<Item13>
|
||||||
|
<Filename Value="lclfpreportbuild.pp"/>
|
||||||
|
<UnitName Value="lclfpreportbuild"/>
|
||||||
|
</Item13>
|
||||||
</Files>
|
</Files>
|
||||||
<RequiredPkgs Count="3">
|
<RequiredPkgs Count="3">
|
||||||
<Item1>
|
<Item1>
|
||||||
|
@ -10,7 +10,7 @@ interface
|
|||||||
uses
|
uses
|
||||||
cfgfpreportimageexport, cfgfpreportpdfexport, fpreportformexport,
|
cfgfpreportimageexport, cfgfpreportpdfexport, fpreportformexport,
|
||||||
fpreportlclexport, fpreportprinterexport, fpreportpreview, dlginputcombo,
|
fpreportlclexport, fpreportprinterexport, fpreportpreview, dlginputcombo,
|
||||||
cfgfpreporthtmlexport, LazarusPackageIntf;
|
cfgfpreporthtmlexport, lclfpreportbuild, LazarusPackageIntf;
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
|
35
components/fpreport/lclfpreportbuild.pp
Normal file
35
components/fpreport/lclfpreportbuild.pp
Normal 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.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user