From 2f0e1dd4524177743bafb7120097428ac61eca1c Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Mon, 23 May 2011 18:42:09 +0200 Subject: [PATCH] [win] Draft version of WIX installer script --- installer/win/MapsWithMe.wxs | 43 ++++++++++++++++++++++++++++++++++++ installer/win/makeSetup.bat | 11 +++++++++ 2 files changed, 54 insertions(+) create mode 100644 installer/win/MapsWithMe.wxs create mode 100644 installer/win/makeSetup.bat diff --git a/installer/win/MapsWithMe.wxs b/installer/win/MapsWithMe.wxs new file mode 100644 index 0000000000..4e6cefa231 --- /dev/null +++ b/installer/win/MapsWithMe.wxs @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/installer/win/makeSetup.bat b/installer/win/makeSetup.bat new file mode 100644 index 0000000000..6471080717 --- /dev/null +++ b/installer/win/makeSetup.bat @@ -0,0 +1,11 @@ +@echo on + +set PATH="C:\Program Files\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%"