summaryrefslogtreecommitdiff
path: root/weihnachtsstern.lpr
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2022-01-13 21:01:06 +0100
committerErich Eckner <git@eckner.net>2022-01-13 21:01:06 +0100
commitfe55b7d37bcd7027dc77d03fd51f51d443db54ba (patch)
tree05766fbc07d84e7b5bd0b46c789641cf73df6660 /weihnachtsstern.lpr
downloadweihnachtsstern-fe55b7d37bcd7027dc77d03fd51f51d443db54ba.tar.xz
inital commit: geht, bis auf Drucken ...HEADmaster
Diffstat (limited to 'weihnachtsstern.lpr')
-rw-r--r--weihnachtsstern.lpr23
1 files changed, 23 insertions, 0 deletions
diff --git a/weihnachtsstern.lpr b/weihnachtsstern.lpr
new file mode 100644
index 0000000..f96dbfe
--- /dev/null
+++ b/weihnachtsstern.lpr
@@ -0,0 +1,23 @@
+program weihnachtsstern;
+
+{$mode objfpc}{$H+}
+
+uses
+ {$IFDEF UNIX}{$IFDEF UseCThreads}
+ cthreads,
+ {$ENDIF}{$ENDIF}
+ Interfaces, // this includes the LCL widgetset
+ Forms, Unit1, vecMath, Unit2
+ { you can add units after this };
+
+{$R *.res}
+
+begin
+ RequireDerivedFormResource:=True;
+ Application.Scaled:=True;
+ Application.Initialize;
+ Application.CreateForm(TForm1, Form1);
+ Application.CreateForm(TForm2, Form2);
+ Application.Run;
+end.
+