summaryrefslogtreecommitdiff
path: root/terminer.lpr
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-12-05 10:08:22 +0100
committerErich Eckner <git@eckner.net>2018-12-05 10:08:22 +0100
commit49fee96ef76bec25b627a0326fdf3f93935ba1cf (patch)
treebbad92f018cb48e96ee0c7825ab237c2d6116db5 /terminer.lpr
downloadterminer-49fee96ef76bec25b627a0326fdf3f93935ba1cf.tar.xz
Initial commit
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.
+