-
Notifications
You must be signed in to change notification settings - Fork 5
/
Barcode.dpr
23 lines (22 loc) · 984 Bytes
/
Barcode.dpr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
program Barcode;
uses
System.StartUpCopy,
FMX.Forms,
View.Main in 'Example\View.Main.pas' {FormMain},
Common.Barcode in 'source\Common.Barcode.pas',
Common.Barcode.IBarcode in 'source\Common.Barcode.IBarcode.pas',
Common.Barcode.Drawer in 'source\Common.Barcode.Drawer.pas',
Common.Barcode.EAN in 'source\Linear\EAN_UPC\Common.Barcode.EAN.pas',
Common.Barcode.EAN8 in 'source\Linear\EAN_UPC\Common.Barcode.EAN8.pas',
Common.Barcode.EAN13 in 'source\Linear\EAN_UPC\Common.Barcode.EAN13.pas',
Common.Barcode.UPC_A in 'source\Linear\EAN_UPC\Common.Barcode.UPC_A.pas',
Common.Barcode.UPC_E in 'source\Linear\EAN_UPC\Common.Barcode.UPC_E.pas',
Common.Barcode.ITF14 in 'source\Linear\Common.Barcode.ITF14.pas',
Common.Barcode.GS128 in 'source\Linear\Common.Barcode.GS128.pas',
Common.Barcode.Code128 in 'source\Linear\Common.Barcode.Code128.pas';
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TFormMain, FormMain);
Application.Run;
end.