Skip to content

Commit

Permalink
installer: rearrange codec components in the installer.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrautz committed May 28, 2015
1 parent 9ee9e8a commit 239b89c
Showing 1 changed file with 23 additions and 22 deletions.
45 changes: 23 additions & 22 deletions installer/Files.wxs
Expand Up @@ -44,6 +44,7 @@
<Component Id="mumble_ol_helper_x64.exe">
<File Source="$(var.SourceDir)\release\mumble_ol_helper_x64.exe" KeyPath="yes" />
</Component>

<Component Id="celt0.0.7.0.dll">
<File Source="$(var.SourceDir)\release\celt0.0.7.0.dll" KeyPath="yes" />
</Component>
Expand All @@ -56,7 +57,28 @@
<Component Id="opus.dll">
<File Source="$(var.SourceDir)\release\opus.dll" KeyPath="yes" />
</Component>


<?ifdef SSE ?>
<Component Id="celt0.0.7.0.sse.dll">
<File Source="$(var.SourceDir)\release\celt0.0.7.0.sse.dll" KeyPath="yes" />
</Component>
<Component Id="celt0.0.11.0.sse.dll">
<File Source="$(var.SourceDir)\release\celt0.0.11.0.sse.dll" KeyPath="yes" />
</Component>
<?endif ?>

<?ifdef SSE2 ?>
<Component Id="celt0.0.7.0.sse2.dll">
<File Source="$(var.SourceDir)\release\celt0.0.7.0.sse2.dll" KeyPath="yes" />
</Component>
<Component Id="celt0.0.11.0.sse2.dll">
<File Source="$(var.SourceDir)\release\celt0.0.11.0.sse2.dll" KeyPath="yes" />
</Component>
<Component Id="opus.sse2.dll">
<File Source="$(var.SourceDir)\release\opus.sse2.dll" KeyPath="yes" />
</Component>
<?endif ?>

<?ifdef G15 ?>
<Component Id="mumble_g15_helper.exe">
<File Source="$(var.SourceDir)\release\mumble-g15-helper.exe" KeyPath="yes" />
Expand Down Expand Up @@ -117,27 +139,6 @@
</Component>
<?endif ?>

<?ifdef SSE ?>
<Component Id="celt0.0.7.0.sse.dll">
<File Source="$(var.SourceDir)\release\celt0.0.7.0.sse.dll" KeyPath="yes" />
</Component>
<Component Id="celt0.0.11.0.sse.dll">
<File Source="$(var.SourceDir)\release\celt0.0.11.0.sse.dll" KeyPath="yes" />
</Component>
<?endif ?>

<?ifdef SSE2 ?>
<Component Id="celt0.0.7.0.sse2.dll">
<File Source="$(var.SourceDir)\release\celt0.0.7.0.sse2.dll" KeyPath="yes" />
</Component>
<Component Id="celt0.0.11.0.sse2.dll">
<File Source="$(var.SourceDir)\release\celt0.0.11.0.sse2.dll" KeyPath="yes" />
</Component>
<Component Id="opus.sse2.dll">
<File Source="$(var.SourceDir)\release\opus.sse2.dll" KeyPath="yes" />
</Component>
<?endif ?>

<?ifdef RedistDirVC12 ?>
<Component Id="msvcp120.dll">
<File Source="$(var.RedistDirVC12)\msvcp120.dll" KeyPath="yes" />
Expand Down

0 comments on commit 239b89c

Please sign in to comment.