FS-10034 [WIX] Fix WIX to respect Win32/x64 binary output folders.

This commit is contained in:
Andrey Volk
2017-02-11 22:53:12 +03:00
committed by Ken Rice
parent fd4043774a
commit 3e2e6b8eeb
3 changed files with 49 additions and 12 deletions
+9
View File
@@ -0,0 +1,9 @@
REM This script reads the configure.ac
REM and outputs a version parsing the AC_INIT line
FOR /f "delims=" %%i in ('FIND /N "AC_INIT" ..\..\configure.ac') DO SET version_contained_string=%%i
FOR /f "tokens=2 delims=," %%a in ("%version_contained_string%") DO SET dirty_version=%%a
SET almost_clean_version=%dirty_version:[=%
SET version_with_spaces=%almost_clean_version:]=%
SET full_version=%version_with_spaces: =%
echo %full_version%