Mercurial > hg > sonic-visualiser
view deploy/win32/generate-wxs.ps1 @ 2590:4448639b9bb1
Next release won't have feedback request
author | Chris Cannam |
---|---|
date | Mon, 10 Aug 2020 15:59:36 +0100 |
parents | 8ac67c315afa |
children |
line wrap: on
line source
Set-StrictMode -Version 2.0 $ErrorActionPreference = "Stop" $version = (Get-Content version.h) -replace '#define SV_VERSION ','' -replace '"','' -replace '-pre.*','' $wxs = "deploy\win32\sonic-visualiser.wxs" $in = "$wxs.in" echo "Generating $wxs..." echo " ...for SV version $version" echo " ...from $in" echo "" if (!(Test-Path -Path $in -PathType Leaf)) { echo "ERROR: Input file $in not found" exit 1 } (Get-Content $in) -replace '@VERSION@', $version -replace '@W@', '<!-- DO NOT EDIT THIS FILE: it is auto-generated -->' | Out-File -encoding ASCII $wxs echo "Done"