mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-10 14:26:00 +02:00
* fcl-base: simplify running gui testframework
without compiling db ppus locally which messes up builds git-svn-id: trunk@24219 -
This commit is contained in:
parent
cf0391a9d6
commit
ff3b0734ec
@ -14,7 +14,7 @@
|
|||||||
<VersionInfo>
|
<VersionInfo>
|
||||||
<StringTable ProductVersion=""/>
|
<StringTable ProductVersion=""/>
|
||||||
</VersionInfo>
|
</VersionInfo>
|
||||||
<BuildModes Count="2">
|
<BuildModes Count="3">
|
||||||
<Item1 Name="Default" Default="True"/>
|
<Item1 Name="Default" Default="True"/>
|
||||||
<Item2 Name="debug">
|
<Item2 Name="debug">
|
||||||
<CompilerOptions>
|
<CompilerOptions>
|
||||||
@ -31,6 +31,25 @@
|
|||||||
</Other>
|
</Other>
|
||||||
</CompilerOptions>
|
</CompilerOptions>
|
||||||
</Item2>
|
</Item2>
|
||||||
|
<Item3 Name="Default_no_local_ppus">
|
||||||
|
<CompilerOptions>
|
||||||
|
<Version Value="11"/>
|
||||||
|
<SearchPaths>
|
||||||
|
<IncludeFiles Value="$(ProjOutDir)"/>
|
||||||
|
</SearchPaths>
|
||||||
|
<Linking>
|
||||||
|
<Debugging>
|
||||||
|
<GenerateDebugInfo Value="False"/>
|
||||||
|
</Debugging>
|
||||||
|
</Linking>
|
||||||
|
<Other>
|
||||||
|
<CompilerMessages>
|
||||||
|
<UseMsgFile Value="True"/>
|
||||||
|
</CompilerMessages>
|
||||||
|
<CompilerPath Value="$(CompPath)"/>
|
||||||
|
</Other>
|
||||||
|
</CompilerOptions>
|
||||||
|
</Item3>
|
||||||
</BuildModes>
|
</BuildModes>
|
||||||
<PublishOptions>
|
<PublishOptions>
|
||||||
<Version Value="2"/>
|
<Version Value="2"/>
|
||||||
|
@ -2,13 +2,15 @@ program dbtestframework_gui;
|
|||||||
|
|
||||||
{$mode objfpc}{$H+}
|
{$mode objfpc}{$H+}
|
||||||
|
|
||||||
// Note that this Lazarus project by default re-compiles all DB-units! This eases
|
// Note that this Lazarus project by default re-compiles all DB units! This eases
|
||||||
// developing, but asks some attention from the developer.
|
// developing, but requires some attention from the developer.
|
||||||
// If you want to use the default, installed db-units, simply clear the search path
|
// It could very well be that after compiling this project, you have to manually clean
|
||||||
// in the compiler-options.
|
|
||||||
// It could also be that after compiling this project, you have to manually clean
|
|
||||||
// the .ppu files before you can build fcl-db in the regular way. (Using fpmake)
|
// the .ppu files before you can build fcl-db in the regular way. (Using fpmake)
|
||||||
|
|
||||||
|
// If you want to use the default installed db units, use the
|
||||||
|
// Default_no_local_ppus build mode which clears the search path in the compiler
|
||||||
|
// options.
|
||||||
|
|
||||||
uses
|
uses
|
||||||
Interfaces, Forms,
|
Interfaces, Forms,
|
||||||
// GUI:
|
// GUI:
|
||||||
|
Loading…
Reference in New Issue
Block a user