aboutsummaryrefslogtreecommitdiff
path: root/dists/msvc14
diff options
context:
space:
mode:
authorPaul Gilbert2016-02-20 19:27:26 -0500
committerPaul Gilbert2016-02-21 15:18:09 -0500
commited5ae8412dee5cadef806ad83a049ac1bc85ec4d (patch)
treef1d9a5772288b63bde28cedd16b238b15ac80889 /dists/msvc14
parent8c9a1c2159251570185de73a7c90003e863f3c7e (diff)
downloadscummvm-rg350-ed5ae8412dee5cadef806ad83a049ac1bc85ec4d.tar.gz
scummvm-rg350-ed5ae8412dee5cadef806ad83a049ac1bc85ec4d.tar.bz2
scummvm-rg350-ed5ae8412dee5cadef806ad83a049ac1bc85ec4d.zip
CREATE_PROJECT: Disable fluidsynth library by default for Visual Studio
Currently we don't have a lib file for fluidsynth built for Visual Studio 2015, and I've spent 5 fruitless hours trying to compile one. So I'm disabling fluidsynth automatically for now, and we can always re-enable it again if we ever do manage to create an appropriate library
Diffstat (limited to 'dists/msvc14')
-rw-r--r--dists/msvc14/create_msvc14.bat4
1 files changed, 2 insertions, 2 deletions
diff --git a/dists/msvc14/create_msvc14.bat b/dists/msvc14/create_msvc14.bat
index 7082ac9680..4a16c43c45 100644
--- a/dists/msvc14/create_msvc14.bat
+++ b/dists/msvc14/create_msvc14.bat
@@ -55,14 +55,14 @@ goto done
echo.
echo Creating project files with all engines enabled (stable and unstable)
echo.
-create_project ..\.. --enable-all-engines --msvc --msvc-version 14 --build-events
+create_project ..\.. --enable-all-engines --disable-fluidsynth --msvc --msvc-version 14 --build-events
goto done
:stable
echo.
echo Creating normal project files, with only the stable engines enabled
echo.
-create_project ..\.. --msvc --msvc-version 14
+create_project ..\.. --disable-fluidsynth --msvc --msvc-version 14
goto done
:tools