aboutsummaryrefslogtreecommitdiff
path: root/dists/msvc9
diff options
context:
space:
mode:
authorStrangerke2014-03-02 11:43:46 +0100
committerStrangerke2014-03-02 11:43:46 +0100
commit418de45d9cebfbabb05edd09ca5206d95d693867 (patch)
tree15962f9701061ee0a19488760f67cb96216854a7 /dists/msvc9
parentfd995fa44914e393fe5dc725928af2a297846513 (diff)
downloadscummvm-rg350-418de45d9cebfbabb05edd09ca5206d95d693867.tar.gz
scummvm-rg350-418de45d9cebfbabb05edd09ca5206d95d693867.tar.bz2
scummvm-rg350-418de45d9cebfbabb05edd09ca5206d95d693867.zip
TOLTECS: Reduce a variable scope, move a variable to boolean
Diffstat (limited to 'dists/msvc9')
-rw-r--r--dists/msvc9/create_msvc9.bat8
1 files changed, 4 insertions, 4 deletions
diff --git a/dists/msvc9/create_msvc9.bat b/dists/msvc9/create_msvc9.bat
index 34bcccdd7b..61a9ea8bf8 100644
--- a/dists/msvc9/create_msvc9.bat
+++ b/dists/msvc9/create_msvc9.bat
@@ -55,28 +55,28 @@ goto done
echo.
echo Creating project files with all engines enabled (stable and unstable)
echo.
-create_project ..\.. --enable-all-engines --msvc --msvc-version 9
+create_project ..\.. --enable-all-engines --msvc --msvc-version 9 --disable-taskbar --disable-freetype --disable-jpeg --disable-engine=zvision
goto done
:stable
echo.
echo Creating normal project files, with only the stable engines enabled
echo.
-create_project ..\.. --msvc --msvc-version 9
+create_project ..\.. --msvc --msvc-version 9 --disable-taskbar --disable-freetype --disable-jpeg --disable-engine=zvision
goto done
:tools
echo.
echo Creating tools project files
echo.
-create_project ..\.. --tools --msvc --msvc-version 9
+create_project ..\.. --tools --msvc --msvc-version 9 --disable-taskbar --disable-freetype --disable-jpeg --disable-engine=zvision
goto done
:tests
echo.
echo Creating tests project files
echo.
-create_project ..\.. --tests --msvc --msvc-version 9
+create_project ..\.. --tests --msvc --msvc-version 9 --disable-taskbar --disable-freetype --disable-jpeg --disable-engine=zvision
goto done
:clean_check