maint-5875 fix llceflib_host.exe' error about missing MSVCP120.dll

master
callum_linden 2015-12-16 18:09:30 -08:00
parent 3bf8929d93
commit dd3b3a4fca
1 changed files with 6 additions and 0 deletions

View File

@ -471,6 +471,12 @@ class Windows_i686_Manifest(ViewerManifest):
self.path("wow_helper.exe")
self.end_prefix()
# MSVC DLLs needed for CEF and have to be in same directory as plugin
if self.prefix(src=os.path.join(os.pardir, 'sharedlibs', 'Release'), dst="llplugin"):
self.path("msvcp120.dll")
self.path("msvcr120.dll")
self.end_prefix()
# CEF files common to all configurations
if self.prefix(src=os.path.join(os.pardir, 'packages', 'resources'), dst="llplugin"):
self.path("cef.pak")