-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtriangolo.lpr
executable file
·44 lines (32 loc) · 1.15 KB
/
triangolo.lpr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{ Triangolo }
{ Version 1.0 (Agavi) }
{ (c) Johannes W. Dietrich, 2012 - 2020 }
{ (c) Ruhr University of Bochum 2012 - 2020 }
{ Main project file }
{ Source code released under the BSD License }
{ See the file "license.txt", included in this distribution, }
{ for details about the copyright. }
{ Current versions and additional information are available from }
{ http://triangolo.sf.net }
{ This program is distributed in the hope that it will be useful, }
{ but WITHOUT ANY WARRANTY; without even the implied warranty of }
{ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. }
program triangolo;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, lazcontrols, EnvironmentInfo, GUI, AboutWindow
{ you can add units after this };
{$R *.res}
begin
Application.Title := 'Triangolo';
RequireDerivedFormResource := True;
Application.Scaled := True;
Application.Initialize;
Application.CreateForm(TTriangoloMainForm, TriangoloMainForm);
Application.CreateForm(TAboutForm, AboutForm);
Application.Run;
end.