mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-07-28 02:18:31 +02:00
* Improve compilation experience under 3.0.4
git-svn-id: trunk@61215 -
This commit is contained in:
parent
8f24e15b5a
commit
0edb6832bf
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -4635,6 +4635,7 @@ components/sqldbrest/demo/restmodule/demorestmodule.lpr svneol=native#text/plain
|
|||||||
components/sqldbrest/demo/restmodule/demorestmodule.res -text
|
components/sqldbrest/demo/restmodule/demorestmodule.res -text
|
||||||
components/sqldbrest/demo/restmodule/dmmyrest.lfm svneol=native#text/plain
|
components/sqldbrest/demo/restmodule/dmmyrest.lfm svneol=native#text/plain
|
||||||
components/sqldbrest/demo/restmodule/dmmyrest.pp svneol=native#text/plain
|
components/sqldbrest/demo/restmodule/dmmyrest.pp svneol=native#text/plain
|
||||||
|
components/sqldbrest/design/build304.pp svneol=native#text/plain
|
||||||
components/sqldbrest/design/dlgrestfieldoptions.lfm svneol=native#text/plain
|
components/sqldbrest/design/dlgrestfieldoptions.lfm svneol=native#text/plain
|
||||||
components/sqldbrest/design/dlgrestfieldoptions.pp svneol=native#text/plain
|
components/sqldbrest/design/dlgrestfieldoptions.pp svneol=native#text/plain
|
||||||
components/sqldbrest/design/dlgsqldbrestconnection.lfm svneol=native#text/plain
|
components/sqldbrest/design/dlgsqldbrestconnection.lfm svneol=native#text/plain
|
||||||
|
24
components/sqldbrest/design/build304.pp
Normal file
24
components/sqldbrest/design/build304.pp
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
unit build304;
|
||||||
|
|
||||||
|
{ ---------------------------------------------------------------------
|
||||||
|
This unit is only needed to build with FPC 3.0.4:
|
||||||
|
|
||||||
|
It makes sure that all units of the sqldbrestbridge in ../src are compiled.
|
||||||
|
Otherwise, the ../src directory must be added to lazsqldbrest as well,
|
||||||
|
which will lead to duplicate units warnings.
|
||||||
|
|
||||||
|
As soon as FPC 3.2.0 is released, this unit can be removed.
|
||||||
|
|
||||||
|
Michael.
|
||||||
|
---------------------------------------------------------------------}
|
||||||
|
{$mode objfpc}{$H+}
|
||||||
|
|
||||||
|
interface
|
||||||
|
|
||||||
|
uses
|
||||||
|
sqldbrestcsv ,sqldbrestxml, sqldbrestcds, sqldbrestado,sqldbrestmodule;
|
||||||
|
|
||||||
|
implementation
|
||||||
|
|
||||||
|
end.
|
||||||
|
|
@ -10,7 +10,7 @@
|
|||||||
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
|
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
|
||||||
</SearchPaths>
|
</SearchPaths>
|
||||||
</CompilerOptions>
|
</CompilerOptions>
|
||||||
<Files Count="21">
|
<Files Count="22">
|
||||||
<Item1>
|
<Item1>
|
||||||
<Filename Value="dlgrestfieldoptions.lfm"/>
|
<Filename Value="dlgrestfieldoptions.lfm"/>
|
||||||
<Type Value="LFM"/>
|
<Type Value="LFM"/>
|
||||||
@ -95,6 +95,10 @@
|
|||||||
<Filename Value="sqldbschemaedittools.lfm"/>
|
<Filename Value="sqldbschemaedittools.lfm"/>
|
||||||
<Type Value="LFM"/>
|
<Type Value="LFM"/>
|
||||||
</Item21>
|
</Item21>
|
||||||
|
<Item22>
|
||||||
|
<Filename Value="build304.pp"/>
|
||||||
|
<UnitName Value="build304"/>
|
||||||
|
</Item22>
|
||||||
</Files>
|
</Files>
|
||||||
<RequiredPkgs Count="3">
|
<RequiredPkgs Count="3">
|
||||||
<Item1>
|
<Item1>
|
||||||
|
@ -10,7 +10,7 @@ interface
|
|||||||
uses
|
uses
|
||||||
dlgrestfieldoptions, dlgsqldbrestconnection, fraconnections, fraschematableseditor, frasqldbfullrestschemaaditor,
|
dlgrestfieldoptions, dlgsqldbrestconnection, fraconnections, fraschematableseditor, frasqldbfullrestschemaaditor,
|
||||||
frasqldbrestfieldedit, frasqldbrestresourceedit, fraSQLDBRestSchemaEditor, frmeditframedialog, sqldbschemaedittools,
|
frasqldbrestfieldedit, frasqldbrestresourceedit, fraSQLDBRestSchemaEditor, frmeditframedialog, sqldbschemaedittools,
|
||||||
frasqldbresourcefields, LazarusPackageIntf;
|
frasqldbresourcefields, build304, LazarusPackageIntf;
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
<CompilerOptions>
|
<CompilerOptions>
|
||||||
<Version Value="11"/>
|
<Version Value="11"/>
|
||||||
<SearchPaths>
|
<SearchPaths>
|
||||||
<OtherUnitFiles Value="src"/>
|
|
||||||
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
|
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
|
||||||
</SearchPaths>
|
</SearchPaths>
|
||||||
</CompilerOptions>
|
</CompilerOptions>
|
||||||
|
Loading…
Reference in New Issue
Block a user