Welcome to mirror list, hosted at ThFree Co, Russian Federation.

makeSetup.bat « win « installer - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 41d5868f720c62f3a58b7ecdc8228f9b827118c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@echo on

del MapsWithMe.wxs > nul
del MapsWithMe.wixobj > nul
del MapsWithMe.wixpdb > nul
del MapsWithMe.msi > nul

perl generator.pl > MapsWithMe.wxs

if NOT ERRORLEVEL 0 echo "Generator returned error %ERRORLEVEL%"

set PATH="C:\Program Files (x86)\Windows Installer XML v3.5\bin";%PATH%

candle -ext WiXUtilExtension MapsWithMe.wxs

if NOT ERRORLEVEL 0 echo "candle returned error %ERRORLEVEL%"

light -ext WiXUtilExtension MapsWithMe.wixobj

if NOT ERRORLEVEL 0 echo "light returned error %ERRORLEVEL%"