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