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: 3e7bd311a6d60df6c3a8c07d05922524dec53bb3 (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 MapsWithMe.wxs

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

light MapsWithMe.wixobj

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