diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-08-15 14:07:46 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-15 14:07:46 -0500 |
commit | cb01d37338ed65c9d1e32dc620d67a7ea8cbadcf (patch) | |
tree | 6a9eb12e381002633e3f5258fd1c924f49bda766 | |
parent | d687f77fefbe3a9fada4f97913001c7f54218719 (diff) | |
parent | c9300c94f473f73c7dc70c690007feb12decd650 (diff) | |
download | servo-cb01d37338ed65c9d1e32dc620d67a7ea8cbadcf.tar.gz servo-cb01d37338ed65c9d1e32dc620d67a7ea8cbadcf.zip |
Auto merge of #12848 - birkoffe:master, r=larsbergstrom
Fix missing libraries for Windows
Fix #12125
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/12848)
<!-- Reviewable:end -->
-rw-r--r-- | support/windows/Servo.wxs.mako | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/support/windows/Servo.wxs.mako b/support/windows/Servo.wxs.mako index e2c83e5708e..aa4705ff578 100644 --- a/support/windows/Servo.wxs.mako +++ b/support/windows/Servo.wxs.mako @@ -133,6 +133,22 @@ Name="avutil-55.dll" Source="C:\msys64\mingw64\bin\avutil-55.dll" DiskId="1"/> + <File Id="LibRTMPDll" + Name="librtmp-1.dll" + Source="C:\msys64\mingw64\bin\librtmp-1.dll" + DiskId="1"/> + <File Id="LibBluRayDll" + Name="libbluray-1.dll" + Source="C:\msys64\mingw64\bin\libbluray-1.dll" + DiskId="1"/> + <File Id="LibModPlugDll" + Name="libmodplug-1.dll" + Source="c:\msys64\mingw64\bin\libmodplug-1.dll" + DiskId="1"/> + <File Id="LibCeltDll" + Name="libcelt0-2.dll" + Source="C:\msys64\mingw64\bin\libcelt0-2.dll" + DiskId="1"/> <File Id="PostprocDll" Name="postproc-54.dll" Source="c:\msys64\mingw64\bin\postproc-54.DLL" |