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

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikkel Krautz <mikkel@krautz.dk>2017-02-05 18:28:10 +0300
committerMikkel Krautz <mikkel@krautz.dk>2017-02-05 18:28:10 +0300
commite4fe8fb0fd2959b1caf22b84d5ee663ce547a0d7 (patch)
treeeaeef54b42e1a4eecd7568063061f892495d1e66 /installer
parentcef2324812294a13f28d4f644bd85b0aef5f37d1 (diff)
installer: use WiX from buildenv.
This uses the mechanism documented at http://wixtoolset.org/documentation/manual/v3/msbuild/daily_builds.html to use a local copy of WiX instead of using the WiX MSI package. Previously, we required people to install WiX globally. That's yet another tedious dependency required in order to build Mumble. We'll now be distributing WiX in our buildenvs, so tell our .wixproj to use that version.
Diffstat (limited to 'installer')
-rw-r--r--installer/MumbleInstall.wixproj5
1 files changed, 5 insertions, 0 deletions
diff --git a/installer/MumbleInstall.wixproj b/installer/MumbleInstall.wixproj
index cf497014b..50813436d 100644
--- a/installer/MumbleInstall.wixproj
+++ b/installer/MumbleInstall.wixproj
@@ -1,6 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
+ <WixToolPath>$(MUMBLE_PREFIX)\wix\</WixToolPath>
+ <WixTargetsPath>$(WixToolPath)Wix.targets</WixTargetsPath>
+ <WixTasksPath>$(WixToolPath)wixtasks.dll</WixTasksPath>
+ </PropertyGroup>
+ <PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProductVersion>3.5</ProductVersion>