[Com0com-cvs] com0com Building.txt,1.4,1.5
The virtual serial port driver for Windows.
Brought to you by:
vfrolov
From: Vyacheslav F. <vf...@us...> - 2012-02-03 17:08:39
|
Update of /cvsroot/com0com/com0com In directory vz-cvs-4.sog:/tmp/cvs-serv9719 Modified Files: Building.txt Log Message: Added HOWTO build a single installer suitable for both 32-bit and 64-bit systems Index: Building.txt =================================================================== RCS file: /cvsroot/com0com/com0com/Building.txt,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Building.txt 12 Jul 2011 18:01:27 -0000 1.4 --- Building.txt 3 Feb 2012 17:08:36 -0000 1.5 *************** *** 84,88 **** For example execute in the DDK build environment window: ! "C:\Program Files\NSIS\makensis.exe" /V2 C:\com0com\NSIS\install.nsi It will create the installer in the C:\com0com\<CPU>\setup.exe file. --- 84,99 ---- For example execute in the DDK build environment window: ! "C:\Program Files\NSIS\makensis.exe" /V2 "C:\com0com\NSIS\install.nsi" It will create the installer in the C:\com0com\<CPU>\setup.exe file. + + + FAQs & HOWTOs + ============= + + Q. Is it possible to build a single installer suitable for both 32-bit and 64-bit systems? + A. Yes, it is possible. Use /DADD_TARGET_CPU_<CPU> and /DOUTPUT_FILE=<path> options, for example: + + "C:\Program Files\NSIS\makensis.exe" /V2 /DADD_TARGET_CPU_i386 /DADD_TARGET_CPU_amd64 /DOUTPUT_FILE="C:\com0com\setup.exe" "C:\com0com\NSIS\install.nsi" + + It will create the installer in the C:\com0com\setup.exe file suitable for both 32-bit and 64-bit systems. |