coassoftwaresystems / delphi-modbus

Delphi ModbusTCP components
114 stars 61 forks source link

delphi 7, indy 10 #24

Open ngx45 opened 6 years ago

ngx45 commented 6 years ago

Just info: Delphi 7, indy10


package DelphiModbus70; //DelphiModbus70.dpk Delphi 7, indy 10

{$R *.res} {$ALIGN 8} {$ASSERTIONS ON} {$BOOLEVAL OFF} {$DEBUGINFO ON} {$EXTENDEDSYNTAX ON} {$IMPORTEDDATA ON} {$IOCHECKS ON} {$LOCALSYMBOLS ON} {$LONGSTRINGS ON} {$OPENSTRINGS ON} {$OPTIMIZATION ON} {$OVERFLOWCHECKS OFF} {$RANGECHECKS OFF} {$REFERENCEINFO ON} {$SAFEDIVIDE OFF} {$STACKFRAMES OFF} {$TYPEDADDRESS OFF} {$VARSTRINGCHECKS ON} {$WRITEABLECONST OFF} {$MINENUMSIZE 1} {$IMAGEBASE $400000} {$DESCRIPTION 'Delphi Modbus components runtime package'} {$RUNONLY} {$IMPLICITBUILD ON} //change Delphi 7, indy 10 {$DEFINE FORCE_INDY10} //add Delphi 7, indy 10

requires rtl, //indy, //-remove delphi 7, indy 10 IndyCore70, //+add delphi 7, indy 10 IndyProtocols70, //+add delphi 7, indy 10 IndySystem70; //+add delphi 7, indy 10

contains IdModbusClient in '..\source\IdModbusClient.pas', IdModbusServer in '..\source\IdModbusServer.pas', ModbusConsts in '..\source\ModbusConsts.pas', ModbusTypes in '..\source\ModbusTypes.pas', ModbusStrConsts in '..\source\ModbusStrConsts.pas', ModbusUtils in '..\source\ModbusUtils.pas'; end.


package dclDelphiModbus70; //DelphiModbus70.dpk. Delphi 7, indy 10

{$R *.res} {$R '..\source\ModbusReg.dcr'} {$ALIGN 8} {$ASSERTIONS ON} {$BOOLEVAL OFF} {$DEBUGINFO ON} {$EXTENDEDSYNTAX ON} {$IMPORTEDDATA ON} {$IOCHECKS ON} {$LOCALSYMBOLS ON} {$LONGSTRINGS ON} {$OPENSTRINGS ON} {$OPTIMIZATION ON} {$OVERFLOWCHECKS OFF} {$RANGECHECKS OFF} {$REFERENCEINFO ON} {$SAFEDIVIDE OFF} {$STACKFRAMES OFF} {$TYPEDADDRESS OFF} {$VARSTRINGCHECKS ON} {$WRITEABLECONST OFF} {$MINENUMSIZE 1} {$IMAGEBASE $400000} {$DESCRIPTION 'Delphi Modbus components'} {$DESIGNONLY} {$IMPLICITBUILD ON} //change Delphi 7, indy 10

requires rtl, DelphiModbus70, vcl, designide, vcljpg;

contains ModbusReg in '..\source\ModbusReg.pas', frm_About in '..\source\frm_About.pas' {frmAbout}, AboutComponentEditor in '..\source\AboutComponentEditor.pas';

end.