[Scummvm-cvs-logs] scummvm master -> d418cd0fd7ebc3847fcf7097281bb1580324295c

Littleboy littleboy22 at gmail.com
Wed Apr 27 04:35:20 CEST 2011


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
d418cd0fd7 TOOLS: Add virtual keyboard feature selection to create_project


Commit: d418cd0fd7ebc3847fcf7097281bb1580324295c
    https://github.com/scummvm/scummvm/commit/d418cd0fd7ebc3847fcf7097281bb1580324295c
Author: Littleboy (littleboy at users.sourceforge.net)
Date: 2011-04-26T19:32:54-07:00

Commit Message:
TOOLS: Add virtual keyboard feature selection to create_project

Changed paths:
    devtools/create_project/create_project.cpp
    devtools/create_project/scripts/postbuild.cmd



diff --git a/devtools/create_project/create_project.cpp b/devtools/create_project/create_project.cpp
index a597ba3..148cd40 100644
--- a/devtools/create_project/create_project.cpp
+++ b/devtools/create_project/create_project.cpp
@@ -709,6 +709,7 @@ const Feature s_features[] = {
 	{      "opengl",      "USE_OPENGL", "opengl32", true, "OpenGL support" },
 	{      "indeo3",      "USE_INDEO3",         "", true, "Indeo3 codec support"},
 	{ "translation", "USE_TRANSLATION",         "", true, "Translation support" },
+	{      "vkeybd",   "ENABLE_VKEYBD",         "", false, "Virtual keyboard support"},
 	{  "langdetect",  "USE_DETECTLANG",         "", true, "System language detection support" } // This feature actually depends on "translation", there
 	                                                                                            // is just no current way of properly detecting this...
 };
diff --git a/devtools/create_project/scripts/postbuild.cmd b/devtools/create_project/scripts/postbuild.cmd
index 6c062f7..e5f2905 100644
--- a/devtools/create_project/scripts/postbuild.cmd
+++ b/devtools/create_project/scripts/postbuild.cmd
@@ -29,6 +29,8 @@ xcopy /F /Y "%~1/dists/engine-data/README" %~2 > NUL 2>&1
 xcopy /F /Y "%~1/gui/themes/*.zip" %~2 > NUL 2>&1

 xcopy /F /Y "%~1/gui/themes/translations.dat" %~2 > NUL 2>&1

 xcopy /F /Y "%~4/lib/%~3/SDL.dll" %~2 > NUL 2>&1

+

+xcopy /F /Y "%~1/backends/vkeybd/packs/vkeybd_default.zip" %~2 > NUL 2>&1

 goto done

 

 :error_root







More information about the Scummvm-git-logs mailing list