Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Make sure InnoSetup install can be found by the setup baking tools on x64 machines. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
99457d88c07f7c751486be406908aa85 |
User & Date: | mistachkin 2011-04-09 23:43:55.942 |
Context
2011-04-10
| ||
01:50 | Make sure all new build system metadata files are accessible in the IDE via the solutions. check-in: 191aeaf73e user: mistachkin tags: trunk | |
2011-04-09
| ||
23:43 | Make sure InnoSetup install can be found by the setup baking tools on x64 machines. check-in: 99457d88c0 user: mistachkin tags: trunk | |
23:06 | Add missing diagnostic message for the PATH variable. check-in: f43bb46d45 user: mistachkin tags: trunk | |
Changes
Changes to Setup/bake.bat.
︙ | ︙ | |||
14 15 16 17 18 19 20 | REM SET _ECHO=ECHO IF NOT DEFINED _AECHO (SET _AECHO=REM) IF NOT DEFINED _CECHO (SET _CECHO=REM) IF NOT DEFINED _VECHO (SET _VECHO=REM) %_AECHO% Running %0 %* | > | > > > | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | REM SET _ECHO=ECHO IF NOT DEFINED _AECHO (SET _AECHO=REM) IF NOT DEFINED _CECHO (SET _CECHO=REM) IF NOT DEFINED _VECHO (SET _VECHO=REM) %_AECHO% Running %0 %* IF "%PROCESSOR_ARCHITECTURE%" == "x86" ( SET PATH=%ProgramFiles%\Inno Setup 5;%PATH% ) ELSE ( SET PATH=%ProgramFiles(x86)%\Inno Setup 5;%PATH% ) %_VECHO% Path = '%PATH%' %_ECHO% ISCC.exe SQLite.iss "/dAppId=%APPID%" "/dAppVersion=%VERSION%" "/dAppPublicKey=%PUBLICKEY%" "/dAppURL=%URL%" "/dIsNetFx2=%ISNETFX2%" "/dVcRuntime=%VCRUNTIME%" "/dAppPlatform=%PLATFORM%" "/dAppProcessor=%PROCESSOR%" "/dYear=%YEAR%" IF %ERRORLEVEL% NEQ 0 ( ECHO Failed to compile setup. |
︙ | ︙ |