summaryrefslogtreecommitdiff
path: root/terminer.lpr
diff options
context:
space:
mode:
Diffstat (limited to 'terminer.lpr')
-rw-r--r--terminer.lpr21
1 files changed, 21 insertions, 0 deletions
diff --git a/terminer.lpr b/terminer.lpr
new file mode 100644
index 0000000..eba2769
--- /dev/null
+++ b/terminer.lpr
@@ -0,0 +1,21 @@
+program terminer;
+
+{$mode objfpc}{$H+}
+
+uses
+ {$IFDEF UNIX}{$IFDEF UseCThreads}
+ cthreads,
+ {$ENDIF}{$ENDIF}
+ Interfaces, // this includes the LCL widgetset
+ Forms, Unit1
+ { you can add units after this };
+
+{$R *.res}
+
+begin
+ RequireDerivedFormResource:=True;
+ Application.Initialize;
+ Application.CreateForm(TForm1, Form1);
+ Application.Run;
+end.
+