mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-14 15:09:14 +02:00
* Add all test files to project
This commit is contained in:
parent
ae938e16a5
commit
bb2d12457c
@ -4,6 +4,7 @@
|
|||||||
<Version Value="12"/>
|
<Version Value="12"/>
|
||||||
<General>
|
<General>
|
||||||
<Flags>
|
<Flags>
|
||||||
|
<SaveOnlyProjectUnits Value="True"/>
|
||||||
<MainUnitHasCreateFormStatements Value="False"/>
|
<MainUnitHasCreateFormStatements Value="False"/>
|
||||||
<MainUnitHasTitleStatement Value="False"/>
|
<MainUnitHasTitleStatement Value="False"/>
|
||||||
<MainUnitHasScaledStatement Value="False"/>
|
<MainUnitHasScaledStatement Value="False"/>
|
||||||
@ -32,6 +33,60 @@
|
|||||||
<Filename Value="tests.rtti.attrtypes.pas"/>
|
<Filename Value="tests.rtti.attrtypes.pas"/>
|
||||||
<IsPartOfProject Value="True"/>
|
<IsPartOfProject Value="True"/>
|
||||||
</Unit>
|
</Unit>
|
||||||
|
<Unit>
|
||||||
|
<Filename Value="tests.rtti.util.pas"/>
|
||||||
|
<IsPartOfProject Value="True"/>
|
||||||
|
<UnitName Value="Tests.Rtti.Util"/>
|
||||||
|
</Unit>
|
||||||
|
<Unit>
|
||||||
|
<Filename Value="tests.rtti.invoke.pas"/>
|
||||||
|
<IsPartOfProject Value="True"/>
|
||||||
|
</Unit>
|
||||||
|
<Unit>
|
||||||
|
<Filename Value="tests.rtti.impl.pas"/>
|
||||||
|
<IsPartOfProject Value="True"/>
|
||||||
|
<UnitName Value="Tests.Rtti.Impl"/>
|
||||||
|
</Unit>
|
||||||
|
<Unit>
|
||||||
|
<Filename Value="tests.rtti.invoketypes.pas"/>
|
||||||
|
<IsPartOfProject Value="True"/>
|
||||||
|
</Unit>
|
||||||
|
<Unit>
|
||||||
|
<Filename Value="tests.rtti.impltypes.pas"/>
|
||||||
|
<IsPartOfProject Value="True"/>
|
||||||
|
</Unit>
|
||||||
|
<Unit>
|
||||||
|
<Filename Value="tests.rtti.value.pas"/>
|
||||||
|
<IsPartOfProject Value="True"/>
|
||||||
|
</Unit>
|
||||||
|
<Unit>
|
||||||
|
<Filename Value="utcfpmonitor.pas"/>
|
||||||
|
<IsPartOfProject Value="True"/>
|
||||||
|
</Unit>
|
||||||
|
<Unit>
|
||||||
|
<Filename Value="utcmatrix.pp"/>
|
||||||
|
<IsPartOfProject Value="True"/>
|
||||||
|
</Unit>
|
||||||
|
<Unit>
|
||||||
|
<Filename Value="utcmatrix3d.pp"/>
|
||||||
|
<IsPartOfProject Value="True"/>
|
||||||
|
</Unit>
|
||||||
|
<Unit>
|
||||||
|
<Filename Value="utcpoint.pp"/>
|
||||||
|
<IsPartOfProject Value="True"/>
|
||||||
|
</Unit>
|
||||||
|
<Unit>
|
||||||
|
<Filename Value="utcquaternion.pp"/>
|
||||||
|
<IsPartOfProject Value="True"/>
|
||||||
|
</Unit>
|
||||||
|
<Unit>
|
||||||
|
<Filename Value="utcvector.pp"/>
|
||||||
|
<IsPartOfProject Value="True"/>
|
||||||
|
</Unit>
|
||||||
|
<Unit>
|
||||||
|
<Filename Value="utmathvectorbase.pas"/>
|
||||||
|
<IsPartOfProject Value="True"/>
|
||||||
|
</Unit>
|
||||||
</Units>
|
</Units>
|
||||||
</ProjectOptions>
|
</ProjectOptions>
|
||||||
<CompilerOptions>
|
<CompilerOptions>
|
||||||
@ -41,7 +96,6 @@
|
|||||||
</Target>
|
</Target>
|
||||||
<SearchPaths>
|
<SearchPaths>
|
||||||
<IncludeFiles Value="$(ProjOutDir)"/>
|
<IncludeFiles Value="$(ProjOutDir)"/>
|
||||||
<OtherUnitFiles Value="../src/inc"/>
|
|
||||||
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
|
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
|
||||||
</SearchPaths>
|
</SearchPaths>
|
||||||
<Linking>
|
<Linking>
|
||||||
@ -50,9 +104,10 @@
|
|||||||
</Debugging>
|
</Debugging>
|
||||||
</Linking>
|
</Linking>
|
||||||
<Other>
|
<Other>
|
||||||
<ConfigFile>
|
<OtherDefines Count="2">
|
||||||
<WriteConfigFilePath Value=""/>
|
<Define0 Value="testinvoke"/>
|
||||||
</ConfigFile>
|
<Define1 Value="useffi"/>
|
||||||
|
</OtherDefines>
|
||||||
</Other>
|
</Other>
|
||||||
</CompilerOptions>
|
</CompilerOptions>
|
||||||
<Debugging>
|
<Debugging>
|
||||||
|
@ -36,7 +36,6 @@ uses
|
|||||||
ffi.manager,
|
ffi.manager,
|
||||||
{$endif}
|
{$endif}
|
||||||
consoletestrunner,
|
consoletestrunner,
|
||||||
tests.rtti.util,
|
|
||||||
{$ifdef testinvoke}
|
{$ifdef testinvoke}
|
||||||
tests.rtti.invoke,
|
tests.rtti.invoke,
|
||||||
{$endif}
|
{$endif}
|
||||||
@ -44,18 +43,21 @@ uses
|
|||||||
tests.rtti.impl,
|
tests.rtti.impl,
|
||||||
{$endif}
|
{$endif}
|
||||||
tests.rtti,
|
tests.rtti,
|
||||||
|
tests.rtti.util,
|
||||||
tests.rtti.value,
|
tests.rtti.value,
|
||||||
tests.rtti.types,
|
tests.rtti.types,
|
||||||
|
tests.rtti.attrtypes,
|
||||||
|
tests.rtti.impltypes,
|
||||||
|
tests.rtti.invoketypes,
|
||||||
utmathvectorbase,
|
utmathvectorbase,
|
||||||
utcmatrix,
|
utcmatrix,
|
||||||
utcpoint,
|
utcpoint,
|
||||||
utcvector,
|
utcvector,
|
||||||
utcquaternion
|
utcquaternion
|
||||||
{$IFDEF HAS_MONITOR}
|
{$IFDEF HAS_MONITOR}
|
||||||
,utcfpmonitor, tests.rtti.attrtypes
|
,utcfpmonitor
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
|
;
|
||||||
;
|
|
||||||
|
|
||||||
|
|
||||||
var
|
var
|
||||||
|
Loading…
Reference in New Issue
Block a user