diff options
author | Paul Gilbert | 2016-10-20 19:38:58 -0400 |
---|---|---|
committer | Paul Gilbert | 2016-10-20 19:38:58 -0400 |
commit | 1981131f99d4fb56ae265cd236bc50d0dcebd110 (patch) | |
tree | 2acf4749e67e92dcd7b735f56ea7a0209b0e5752 /dists | |
parent | c1070e692965f27e0865a4eeed0e025876502d1a (diff) | |
download | scummvm-rg350-1981131f99d4fb56ae265cd236bc50d0dcebd110.tar.gz scummvm-rg350-1981131f99d4fb56ae265cd236bc50d0dcebd110.tar.bz2 scummvm-rg350-1981131f99d4fb56ae265cd236bc50d0dcebd110.zip |
CREATE_PROJECT: Disable new net, curl, & sparkle for old MSVC versions
Diffstat (limited to 'dists')
-rw-r--r-- | dists/msvc10/create_msvc10.bat | 4 | ||||
-rw-r--r-- | dists/msvc11/create_msvc11.bat | 4 | ||||
-rw-r--r-- | dists/msvc12/create_msvc12.bat | 4 | ||||
-rw-r--r-- | dists/msvc9/create_msvc9.bat | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/dists/msvc10/create_msvc10.bat b/dists/msvc10/create_msvc10.bat index 53acbff42e..81f5d156a9 100644 --- a/dists/msvc10/create_msvc10.bat +++ b/dists/msvc10/create_msvc10.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 --disable-fluidsynth --msvc --msvc-version 10 --build-events +create_project ..\.. --enable-all-engines --disable-fluidsynth --disable-sdlnet --disable-libcurl --disable-updates --msvc --msvc-version 10 --build-events goto done :stable echo. echo Creating normal project files, with only the stable engines enabled echo. -create_project ..\.. --disable-fluidsynth --msvc --msvc-version 10 +create_project ..\.. --disable-fluidsynth --disable-sdlnet --disable-libcurl --disable-updates --msvc --msvc-version 10 goto done :tools diff --git a/dists/msvc11/create_msvc11.bat b/dists/msvc11/create_msvc11.bat index 3c3052a5b0..7d667b0591 100644 --- a/dists/msvc11/create_msvc11.bat +++ b/dists/msvc11/create_msvc11.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 --disable-fluidsynth --msvc --msvc-version 11 --build-events +create_project ..\.. --enable-all-engines --disable-fluidsynth --disable-sdlnet --disable-libcurl --disable-updates --msvc --msvc-version 11 --build-events goto done :stable echo. echo Creating normal project files, with only the stable engines enabled echo. -create_project ..\.. --disable-fluidsynth --msvc --msvc-version 11 +create_project ..\.. --disable-fluidsynth --disable-sdlnet --disable-libcurl --disable-updates --msvc --msvc-version 11 goto done :tools diff --git a/dists/msvc12/create_msvc12.bat b/dists/msvc12/create_msvc12.bat index 449b50ea54..d28bc65ad9 100644 --- a/dists/msvc12/create_msvc12.bat +++ b/dists/msvc12/create_msvc12.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 --disable-fluidsynth --msvc --msvc-version 12 --build-events +create_project ..\.. --enable-all-engines --disable-fluidsynth --disable-sdlnet --disable-libcurl --disable-updates --msvc --msvc-version 12 --build-events goto done :stable echo. echo Creating normal project files, with only the stable engines enabled echo. -create_project ..\.. --disable-fluidsynth --msvc --msvc-version 12 +create_project ..\.. --disable-fluidsynth --disable-sdlnet --disable-libcurl --disable-updates --msvc --msvc-version 12 goto done :tools diff --git a/dists/msvc9/create_msvc9.bat b/dists/msvc9/create_msvc9.bat index 005bc084db..5151c89da9 100644 --- a/dists/msvc9/create_msvc9.bat +++ b/dists/msvc9/create_msvc9.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 --disable-fluidsynth --msvc --msvc-version 9 +create_project ..\.. --enable-all-engines --disable-fluidsynth --disable-sdlnet --disable-libcurl --disable-updates --msvc --msvc-version 9 goto done :stable echo. echo Creating normal project files, with only the stable engines enabled echo. -create_project ..\.. --disable-fluidsynth --msvc --msvc-version 9 +create_project ..\.. --disable-fluidsynth --disable-sdlnet --disable-libcurl --disable-updates --msvc --msvc-version 9 goto done :tools |