summaryrefslogtreecommitdiff
path: root/examples/apps/fpcunit
diff options
context:
space:
mode:
authorgraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2008-07-09 13:02:17 +0000
committergraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2008-07-09 13:02:17 +0000
commit9dab72d590cb35e939b7a663b9365edcf4fd2618 (patch)
treea0918de0fa1d5cb6b9df55fe793454a04369014e /examples/apps/fpcunit
parenta91fce032d78cfa00d26fb27351280a2a33d27fa (diff)
downloadfpGUI-9dab72d590cb35e939b7a663b9365edcf4fd2618.tar.xz
* Updated the fpgui_ide.lpk to use the new fpgui_toolkit.lpk package.
* Added a new contributed package from Michael van Canneyt. This allows you to create FPCUnit projects with the fpGUI as front-end. * Renamed the FPCUnit GUI Test Runner unit from guitestrunner.pas to fpg_guitestrunner.pas to prevent conflicts in the Lazarus IDE.
Diffstat (limited to 'examples/apps/fpcunit')
-rw-r--r--examples/apps/fpcunit/fpg_guitestrunner.pas (renamed from examples/apps/fpcunit/guitestrunner.pas)2
-rw-r--r--examples/apps/fpcunit/guitestrunner_fpgui.lpk5
-rw-r--r--examples/apps/fpcunit/guitestrunner_fpgui.pas14
3 files changed, 17 insertions, 4 deletions
diff --git a/examples/apps/fpcunit/guitestrunner.pas b/examples/apps/fpcunit/fpg_guitestrunner.pas
index 34bf5683..1d56f3a8 100644
--- a/examples/apps/fpcunit/guitestrunner.pas
+++ b/examples/apps/fpcunit/fpg_guitestrunner.pas
@@ -1,4 +1,4 @@
-unit GuiTestRunner;
+unit fpg_GuiTestRunner;
{$mode objfpc}{$H+}
diff --git a/examples/apps/fpcunit/guitestrunner_fpgui.lpk b/examples/apps/fpcunit/guitestrunner_fpgui.lpk
index 126add79..a1093a82 100644
--- a/examples/apps/fpcunit/guitestrunner_fpgui.lpk
+++ b/examples/apps/fpcunit/guitestrunner_fpgui.lpk
@@ -6,7 +6,7 @@
<CompilerOptions>
<Version Value="5"/>
<SearchPaths>
- <UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)/"/>
+ <UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
</SearchPaths>
<CodeGeneration>
<Generate Value="Faster"/>
@@ -20,8 +20,7 @@
<Version Minor="1"/>
<Files Count="1">
<Item1>
- <Filename Value="guitestrunner.pas"/>
- <UnitName Value="guitestrunner"/>
+ <Filename Value="fpg_guitestrunner.pas"/>
</Item1>
</Files>
<RequiredPkgs Count="1">
diff --git a/examples/apps/fpcunit/guitestrunner_fpgui.pas b/examples/apps/fpcunit/guitestrunner_fpgui.pas
new file mode 100644
index 00000000..81ad2d21
--- /dev/null
+++ b/examples/apps/fpcunit/guitestrunner_fpgui.pas
@@ -0,0 +1,14 @@
+{ This file was automatically created by Lazarus. Do not edit!
+This source is only used to compile and install the package.
+ }
+
+unit guitestrunner_fpgui;
+
+interface
+
+uses
+ fpg_GuiTestRunner;
+
+implementation
+
+end.