forked from HemulGM/Strato
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStrato.dpr
More file actions
32 lines (29 loc) · 1.11 KB
/
Strato.dpr
File metadata and controls
32 lines (29 loc) · 1.11 KB
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
program Strato;
uses
System.StartUpCopy,
FMX.Forms,
FMX.Skia,
FMX.Types,
Strato.Main in 'Strato.Main.pas' {FormMain},
Strato.Frame.AudioItem in 'Strato.Frame.AudioItem.pas' {FrameAudioItem: TFrame},
Strato.Events in 'Strato.Events.pas',
Strato.Utils in 'Strato.Utils.pas',
Strato.AudioData in 'Strato.AudioData.pas',
GoogleAPIs.Auth in 'GoogleAPIs\GoogleAPIs.Auth.pas',
GoogleAPIs.Drive in 'GoogleAPIs\GoogleAPIs.Drive.pas',
HGM.FastClientAPI in 'GoogleAPIs\FastClientAPI\HGM.FastClientAPI.pas',
GoogleAPIs.UserInfo in 'GoogleAPIs\GoogleAPIs.UserInfo.pas',
GoogleAPIs in 'GoogleAPIs\GoogleAPIs.pas',
HGM.FMX.Image in 'HGM.FMX.Image.pas',
HGM.ObjectHolder in 'AsyncObjectHolder\HGM.ObjectHolder.pas',
FMX.BASS.FX in 'FMXAudio\Sources\FMX.BASS.FX.pas',
Strato.Frame.Page in 'Strato.Frame.Page.pas' {FramePage: TFrame},
Strato.Frame.Page.Home in 'Strato.Frame.Page.Home.pas' {FramePageHome: TFrame},
Strato.ActivePlaylist in 'Strato.ActivePlaylist.pas';
{$R *.res}
begin
GlobalUseSkia := True;
Application.Initialize;
Application.CreateForm(TFormMain, FormMain);
Application.Run;
end.