From af9720021680bf6a0f196b25c5d0511925e34a09 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Tue, 18 Jan 2022 20:44:50 +0100 Subject: initial commit --- penrose.lpr | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 penrose.lpr (limited to 'penrose.lpr') diff --git a/penrose.lpr b/penrose.lpr new file mode 100644 index 0000000..f362a29 --- /dev/null +++ b/penrose.lpr @@ -0,0 +1,22 @@ +program penrose; + +{$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.Scaled:=True; + Application.Initialize; + Application.CreateForm(TForm1, Form1); + Application.Run; +end. + -- cgit v1.2.3-54-g00ecf