mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-03-28 14:56:19 +01:00

This avoids merge modules which may crush system runtimes files. We've had several issues packaging vc_redist binaries also, so this seems to a better option for now. Gitlab: #1865 Change-Id: I9ac3d3a1945136d7f78cf5be2de5d05cf377e126
97 lines
No EOL
4.1 KiB
XML
97 lines
No EOL
4.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="4.0"
|
|
DefaultTargets="Build"
|
|
InitialTargets="EnsureWixToolsetInstalled"
|
|
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">x64</Platform>
|
|
<ProductVersion>3.10</ProductVersion>
|
|
<ProjectGuid>dbbfbc55-1c20-4d21-ae3b-6e8b14c4fe48</ProjectGuid>
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
<OutputName Condition="'$(Configuration)' == 'Release'">jami.release.$(Platform)</OutputName>
|
|
<OutputName Condition="'$(Configuration)' == 'Beta'">jami.beta.$(Platform)</OutputName>
|
|
<OutputType>Package</OutputType>
|
|
<Name>JamiInstaller</Name>
|
|
<InstallerPlatform>x64</InstallerPlatform>
|
|
<DefineSolutionProperties>false</DefineSolutionProperties>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
|
|
<OutputPath>bin\$(Configuration)\</OutputPath>
|
|
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
|
|
<DefineConstants>AppHarvestPath=..\x64\Release;CrtHarvestPath=$(VC_CRT_Dir)</DefineConstants>
|
|
<SuppressPdbOutput>True</SuppressPdbOutput>
|
|
<CompilerAdditionalOptions>
|
|
</CompilerAdditionalOptions>
|
|
<WixVariables>
|
|
</WixVariables>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Beta|x64' ">
|
|
<OutputPath>bin\$(Configuration)\</OutputPath>
|
|
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
|
|
<DefineConstants>AppHarvestPath=..\x64\Beta;CrtHarvestPath=$(VC_CRT_Dir)</DefineConstants>
|
|
<SuppressPdbOutput>True</SuppressPdbOutput>
|
|
<CompilerAdditionalOptions>
|
|
</CompilerAdditionalOptions>
|
|
<WixVariables>
|
|
</WixVariables>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Include="Product.wxs" />
|
|
<Compile Include="AppComponents.wxs" />
|
|
<Compile Include="CrtComponents.wxs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="Config.wxi" />
|
|
<Content Include="HarvestFilter.xslt" />
|
|
<Content Include="JamiInstaller.wax" />
|
|
<Content Include="main-banner.bmp" />
|
|
<Content Include="top-banner.bmp" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<WixExtension Include="WixUtilExtension">
|
|
<HintPath>$(WixExtDir)\WixUtilExtension.dll</HintPath>
|
|
<Name>WixUtilExtension</Name>
|
|
</WixExtension>
|
|
<WixExtension Include="WixUIExtension">
|
|
<HintPath>$(WixExtDir)\WixUIExtension.dll</HintPath>
|
|
<Name>WixUIExtension</Name>
|
|
</WixExtension>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Localization.wxl" />
|
|
</ItemGroup>
|
|
<Import Project="$(WixTargetsPath)"
|
|
Condition=" '$(WixTargetsPath)' != '' " />
|
|
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets"
|
|
Condition=" '$(WixTargetsPath)' == '' AND Exists('$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets') " />
|
|
<Target Name="EnsureWixToolsetInstalled"
|
|
Condition=" '$(WixTargetsImported)' != 'true' ">
|
|
<Error Text="The WiX Toolset v3.11 (or newer) build tools must be installed to build this project. To download the WiX Toolset, see http://wixtoolset.org/releases/" />
|
|
</Target>
|
|
<Target Name="BeforeBuild">
|
|
<HeatDirectory Directory="..\x64\$(Configuration)"
|
|
PreprocessorVariable="var.AppHarvestPath"
|
|
OutputFile="AppComponents.wxs"
|
|
ComponentGroupName="AppHeatGenerated"
|
|
DirectoryRefId="APPLICATIONFOLDER"
|
|
AutogenerateGuids="true"
|
|
ToolPath="$(WixToolPath)"
|
|
SuppressFragments="true"
|
|
SuppressRegistry="true"
|
|
SuppressRootDirectory="true"
|
|
Transforms="HarvestFilter.xslt" />
|
|
<HeatDirectory Directory="$(VC_CRT_Dir)"
|
|
PreprocessorVariable="var.CrtHarvestPath"
|
|
OutputFile="CrtComponents.wxs"
|
|
ComponentGroupName="CrtHeatGenerated"
|
|
DirectoryRefId="APPLICATIONFOLDER"
|
|
AutogenerateGuids="true"
|
|
ToolPath="$(WixToolPath)"
|
|
SuppressFragments="true"
|
|
SuppressRegistry="true"
|
|
SuppressRootDirectory="true" />
|
|
</Target>
|
|
<Target Name="AfterBuild">
|
|
</Target>
|
|
</Project> |