-
Notifications
You must be signed in to change notification settings - Fork 8
/
CompileAll.dpr
34 lines (29 loc) · 900 Bytes
/
CompileAll.dpr
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
program CompileAll;
{$APPTYPE CONSOLE}
{$R *.res}
uses
System.SysUtils,
{$IF Defined(IOS) or Defined(MACOS)}
DX.Apple.Utils in 'DX.Apple.Utils.pas',
{$ENDIF}
DX.Classes.Factory in 'DX.Classes.Factory.pas',
DX.CrossPlatform in 'DX.CrossPlatform.pas',
DX.FMX.Wait in 'DX.FMX.Wait.pas',
DX.Settings in 'DX.Settings.pas',
DX.Sort.Introsort in 'DX.Sort.Introsort.pas',
DX.SysUtils in 'DX.SysUtils.pas',
DX.Threading.Command in 'DX.Threading.Command.pas',
DX.Threading in 'DX.Threading.pas',
DX.Types.GeoLocation in 'DX.Types.GeoLocation.pas',
DX.Types.Nullable in 'DX.Types.Nullable.pas',
DX.Utils.Connectivity in 'DX.Utils.Connectivity.pas',
DX.Utils.IO in 'DX.Utils.IO.pas',
DX.Utils.Logger in 'DX.Utils.Logger.pas';
begin
try
Writeln('DX.Library compiled successfully!');
except
on E: Exception do
Writeln(E.ClassName, ': ', E.Message);
end;
end.