program GMMSoft;
|
|
uses
|
MultInst in 'pub\MultInst.pas',
|
Forms,
|
uMain in 'uMain.pas' {frmMain},
|
SQLite3 in 'sqlite3\SQLite3.pas',
|
sqlite3udf in 'sqlite3\sqlite3udf.pas',
|
SQLiteTable3 in 'sqlite3\SQLiteTable3.pas',
|
Global in 'pub\Global.pas',
|
MsgVar in 'pub\MsgVar.pas',
|
PubUtils in 'pub\PubUtils.pas',
|
log4me in 'log\log4me.pas',
|
uInit in 'init\uInit.pas',
|
uDM in 'uDM.pas' {dm: TDataModule},
|
uCalc in 'uCalc.pas' {frmCalc},
|
ActuatorLib in 'lib\ActuatorLib.pas',
|
testThread in 'thread\testThread.pas',
|
uSaveData in 'uSaveData.pas',
|
mantestThread in 'thread\mantestThread.pas',
|
verifyThread in 'thread\verifyThread.pas',
|
UntDes in 'pub\UntDes.pas',
|
CpuidInfo in 'pub\CpuidInfo.pas',
|
grainThread in 'thread\grainThread.pas',
|
interceptThread in 'thread\interceptThread.pas',
|
resetThread in 'thread\resetThread.pas',
|
uTablet in 'uTablet.pas' {frmTablet};
|
|
{$R *.res}
|
|
begin
|
Application.Initialize;
|
Application.CreateForm(TfrmMain, frmMain);
|
Application.CreateForm(Tdm, dm);
|
Application.CreateForm(TfrmTablet, frmTablet);
|
Application.Run;
|
end.
|