[Scummvm-cvs-logs] SF.net SVN: scummvm:[45647] scummvm/trunk/dists

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Wed Nov 4 00:20:29 CET 2009


Revision: 45647
          http://scummvm.svn.sourceforge.net/scummvm/?rev=45647&view=rev
Author:   thebluegr
Date:     2009-11-03 23:20:28 +0000 (Tue, 03 Nov 2009)

Log Message:
-----------
Added batch files to create default project files using the create_msvc tool

Modified Paths:
--------------
    scummvm/trunk/dists/msvc8/readme.txt
    scummvm/trunk/dists/msvc9/readme.txt

Added Paths:
-----------
    scummvm/trunk/dists/msvc8/create_msvc8.bat
    scummvm/trunk/dists/msvc9/create_msvc9.bat

Added: scummvm/trunk/dists/msvc8/create_msvc8.bat
===================================================================
--- scummvm/trunk/dists/msvc8/create_msvc8.bat	                        (rev 0)
+++ scummvm/trunk/dists/msvc8/create_msvc8.bat	2009-11-03 23:20:28 UTC (rev 45647)
@@ -0,0 +1,30 @@
+ at echo off
+echo.
+echo Automatic creation of the MSVC8 project files
+echo.
+
+if not exist create_msvc.exe goto no_tool
+
+choice /m "Do you want to enable all engines? "
+if errorlevel 2 goto normal_build
+if errorlevel 1 goto all_engines
+
+:no_tool
+echo create_msvc.exe not found in the current folder.
+echo You need to build it first and copy it in this
+echo folder
+goto done
+
+:all_engines
+echo Creating project files with all engines enabled
+create_msvc ..\.. --enable-all-engines --msvc-version 8
+goto done
+
+:normal_build
+echo Creating normal project files, with only the stable
+echo engines enabled
+create_msvc ..\.. --msvc-version 8
+goto done
+
+:done
+pause


Property changes on: scummvm/trunk/dists/msvc8/create_msvc8.bat
___________________________________________________________________
Added: svn:mime-type
   + text/plain
Added: svn:eol-style
   + native

Modified: scummvm/trunk/dists/msvc8/readme.txt
===================================================================
--- scummvm/trunk/dists/msvc8/readme.txt	2009-11-03 23:06:25 UTC (rev 45646)
+++ scummvm/trunk/dists/msvc8/readme.txt	2009-11-03 23:20:28 UTC (rev 45647)
@@ -1,8 +1,6 @@
 The Visual Studio project files can now be created automatically from the GCC
 files using the create_msvc tool inside the /tools/create_msvc folder.
-To create the default project files, build create_msvc, copy it inside this
-folder and run it like this:
 
-create_msvc ..\.. --msvc-version 8
-
-Run the tool with no parameters to check the possible command-line options
+To create the default project files, build create_msvc.exe, copy it inside this
+folder and run the create_msvc8.bat file for a default build. You can run
+create_msvc.exe with no parameters to check the possible command-line options

Added: scummvm/trunk/dists/msvc9/create_msvc9.bat
===================================================================
--- scummvm/trunk/dists/msvc9/create_msvc9.bat	                        (rev 0)
+++ scummvm/trunk/dists/msvc9/create_msvc9.bat	2009-11-03 23:20:28 UTC (rev 45647)
@@ -0,0 +1,30 @@
+ at echo off
+echo.
+echo Automatic creation of the MSVC9 project files
+echo.
+
+if not exist create_msvc.exe goto no_tool
+
+choice /m "Do you want to enable all engines? "
+if errorlevel 2 goto normal_build
+if errorlevel 1 goto all_engines
+
+:no_tool
+echo create_msvc.exe not found in the current folder.
+echo You need to build it first and copy it in this
+echo folder
+goto done
+
+:all_engines
+echo Creating project files with all engines enabled
+create_msvc ..\.. --enable-all-engines --msvc-version 9
+goto done
+
+:normal_build
+echo Creating normal project files, with only the stable
+echo engines enabled
+create_msvc ..\.. --msvc-version 9
+goto done
+
+:done
+pause


Property changes on: scummvm/trunk/dists/msvc9/create_msvc9.bat
___________________________________________________________________
Added: svn:mime-type
   + text/plain
Added: svn:eol-style
   + native

Modified: scummvm/trunk/dists/msvc9/readme.txt
===================================================================
--- scummvm/trunk/dists/msvc9/readme.txt	2009-11-03 23:06:25 UTC (rev 45646)
+++ scummvm/trunk/dists/msvc9/readme.txt	2009-11-03 23:20:28 UTC (rev 45647)
@@ -1,8 +1,6 @@
 The Visual Studio project files can now be created automatically from the GCC
 files using the create_msvc tool inside the /tools/create_msvc folder.
-To create the default project files, build create_msvc, copy it inside this
-folder and run it like this:
 
-create_msvc ..\.. --msvc-version 9
-
-Run the tool with no parameters to check the possible command-line options
+To create the default project files, build create_msvc.exe, copy it inside this
+folder and run the create_msvc9.bat file for a default build. You can run
+create_msvc.exe with no parameters to check the possible command-line options


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list