From 50e3d7b37871a0355a4aed57804c0ff0434acaa0 Mon Sep 17 00:00:00 2001 From: Celtic Minstrel Date: Thu, 19 Feb 2015 22:24:19 -0500 Subject: [PATCH] Add OpenAL to list of included DLLs on Windows. --- src/BoE.vsproj/Common/CopyFiles.bat | 3 ++- src/BoE.vsproj/Installer/main.nsi | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/BoE.vsproj/Common/CopyFiles.bat b/src/BoE.vsproj/Common/CopyFiles.bat index a59fafa33..31535a183 100644 --- a/src/BoE.vsproj/Common/CopyFiles.bat +++ b/src/BoE.vsproj/Common/CopyFiles.bat @@ -50,4 +50,5 @@ if %Config% == "Debug" ( ) xcopy "%DllSrcDir%\zlib1.dll" %TargetDir% /s /y /i /d -xcopy "%DllSrcDir%\libsndfile-1.dll" %TargetDir% /s /y /i /d \ No newline at end of file +xcopy "%DllSrcDir%\libsndfile-1.dll" %TargetDir% /s /y /i /d +xcopy "%DllSrcDir%\openal32.dll" %TargetDir% /s /y /i /d diff --git a/src/BoE.vsproj/Installer/main.nsi b/src/BoE.vsproj/Installer/main.nsi index bb0a5e0c1..57e9a13fb 100644 --- a/src/BoE.vsproj/Installer/main.nsi +++ b/src/BoE.vsproj/Installer/main.nsi @@ -53,6 +53,7 @@ Section "Blades of Exile" Section1 File "..\Release\Blades of Exile.exe" ; Required DLLs File "..\Release\libsndfile-1.dll" + File "..\Release\openal32.dll" File "..\Release\sfml-audio-2.dll" File "..\Release\sfml-graphics-2.dll" File "..\Release\sfml-system-2.dll"