~ubuntu-branches/debian/jessie/scummvm/jessie

« back to all changes in this revision

Viewing changes to dists/msvc10/create_msvc10.bat

  • Committer: Package Import Robot
  • Author(s): Dmitry Smirnov
  • Date: 2014-08-10 00:50:36 UTC
  • mfrom: (1.2.22)
  • Revision ID: package-import@ubuntu.com-20140810005036-wls6i0dsxqfxu70g
Tags: 1.7.0+dfsg-1
* New upstream release [July 2014].
  - remove old/obsolete patches.
  + added new "drop1test.patch" to disable problematic test.
  + build with "--disable-eventrecorder" to avoid FTBFS in tests.
  + added "libjpeg-dev" and "libfaad-dev" to Build-Depends.
* Install all arch-independent files (themes, game data, etc.).
* Build-time re-compression of "classic" theme.
* Added "debian/gbp.conf".
* Standards-Version to 3.9.5.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
if "%~1"=="/ALL"    goto all
11
11
if "%~1"=="/tools"  goto tools
12
12
if "%~1"=="/TOOLS"  goto tools
 
13
if "%~1"=="/tests"  goto tests
 
14
if "%~1"=="/TESTS"  goto tests
13
15
if "%~1"=="/clean"  goto clean_check
14
16
if "%~1"=="/CLEAN"  goto clean_check
15
17
if "%~1"=="/help"   goto command_help
70
72
create_project ..\.. --tools --msvc --msvc-version 10
71
73
goto done
72
74
 
 
75
:tests
 
76
echo.
 
77
echo Creating tests project files
 
78
echo.
 
79
create_project ..\.. --tests --msvc --msvc-version 10
 
80
goto done
 
81
 
73
82
:clean_check
74
83
echo.
75
84
set cleananswer=N
88
97
del /Q *.sln* > NUL 2>&1
89
98
del /Q scummvm* > NUL 2>&1
90
99
del /Q devtools* > NUL 2>&1
 
100
del /Q test_runner.cpp > NUL 2>&1
91
101
goto done
92
102
 
93
103
:done