-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathClock.lpr
More file actions
executable file
·31 lines (25 loc) · 808 Bytes
/
Clock.lpr
File metadata and controls
executable file
·31 lines (25 loc) · 808 Bytes
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
//
// Copyright 2012 Shaun Simpson
// shauns2029@gmail.com
//
program Clock;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}
cthreads,
{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, runtimetypeinfocontrols, ClockMain, MetOffice, alarm, ClockSettings,
Reminders, DatePicker, ReminderList, FindThread, music, sync, udpclient,
udpserver, PlaylistCreator, udpcommandserver;
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TfrmClockMain, frmClockMain);
Application.CreateForm(TfrmClockSettings, frmClockSettings);
Application.CreateForm(TfrmReminders, frmReminders);
Application.CreateForm(TfrmDatePicker, frmDatePicker);
Application.CreateForm(TfrmReminderList, frmReminderList);
Application.CreateForm(TfrmPlaylist, frmPlaylist);
Application.Run;
end.