-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathHamVNA.dpr
48 lines (42 loc) · 1.56 KB
/
HamVNA.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//This Source Code Form is subject to the terms of the Mozilla Public
//License, v. 2.0. If a copy of the MPL was not distributed with this
//file, You can obtain one at http://mozilla.org/MPL/2.0/.
//Copyright (c) 2013 Alex Shovkoplyas VE3NEA
// JCL_DEBUG_EXPERT_GENERATEJDBG OFF
// JCL_DEBUG_EXPERT_INSERTJDBG OFF
program HamVNA;
uses
Forms,
Main in 'Main.pas' {MainForm},
ChartFrm in 'ChartFrm.pas' {ChartFrame: TFrame},
VnaCli in 'VnaCli.pas',
ProgrDlg in 'ProgrDlg.pas' {ProgressDialog},
ComplMath in 'Lib\ComplMath.pas',
CalibDlg in 'CalibDlg.pas' {CalibrationDialog},
Ini in 'Ini.pas',
Calibr in 'Calibr.pas',
ChartSelFrm in 'ChartSelFrm.pas' {ChartSelectionFrame: TFrame},
VnaResults in 'VnaResults.pas',
SmithFrm in 'SmithFrm.pas' {SmithChartFrame: TFrame},
TouchStone in 'TouchStone.pas',
Plot in 'Plot.pas',
AngleTxt in 'Lib\AngleTxt.pas',
RlcFit in 'RlcFit.pas',
SndTypes0 in 'Lib\SndTypes0.pas',
LaPackWrap in 'Lib\LaPackWrap.pas',
VectFitt in 'Lib\VectFitt.pas',
RlcFrm in 'RlcFrm.pas' {RlcFrame: TFrame},
AboutDlg in 'AboutDlg.pas' {AboutDialog},
UdpBrdCast in 'Lib\UdpBrdCast.pas',
JwaIpTypes in 'Lib\JwaIpTypes.pas';
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.Title := 'Ham VNA';
Application.CreateForm(TMainForm, MainForm);
Application.CreateForm(TProgressDialog, ProgressDialog);
Application.CreateForm(TCalibrationDialog, CalibrationDialog);
Application.CreateForm(TAboutDialog, AboutDialog);
Application.Run;
end.