Property changes on: dists
___________________________________________________________________
Modified: svn:ignore
- rpl.exe
+ rpl.exe
msvc10
Property changes on: dists\msvc10
___________________________________________________________________
Added: svn:ignore
+ *.filters
*.log
*.props
*.sln
*.vcxproj
Debug32
Debug64
Release32
Release64
create_msvc.exe
|
|
|
|
| | 1 | @echo off |
| | 2 | echo. |
| | 3 | echo Automatic creation of the MSVC10 project files |
| | 4 | echo. |
| | 5 | |
| | 6 | if not exist create_msvc.exe goto no_tool |
| | 7 | |
| | 8 | :question |
| | 9 | echo. |
| | 10 | set /p batchanswer="Enable (S)table engines only, or (A)ll engines? (S/A)" |
| | 11 | if "%batchanswer%"=="s" goto stable |
| | 12 | if "%batchanswer%"=="S" goto stable |
| | 13 | if "%batchanswer%"=="a" goto all |
| | 14 | if "%batchanswer%"=="A" goto all |
| | 15 | goto question |
| | 16 | |
| | 17 | :no_tool |
| | 18 | echo create_msvc.exe not found in the current folder. |
| | 19 | echo You need to build it first and copy it in this |
| | 20 | echo folder |
| | 21 | goto done |
| | 22 | |
| | 23 | :all |
| | 24 | echo Creating project files with all engines enabled (stable and unstable) |
| | 25 | create_msvc ..\.. --enable-all-engines --msvc-version 10 |
| | 26 | goto done |
| | 27 | |
| | 28 | :stable |
| | 29 | echo Creating normal project files, with only the stable engines enabled |
| | 30 | create_msvc ..\.. --msvc-version 10 |
| | 31 | goto done |
| | 32 | |
| | 33 | :done |
| | 34 | pause |