diff options
author | Littleboy | 2011-04-26 22:31:37 -0400 |
---|---|---|
committer | Littleboy | 2011-04-26 22:32:54 -0400 |
commit | d418cd0fd7ebc3847fcf7097281bb1580324295c (patch) | |
tree | 002e782ecba1b2a1d6775d8460fbe36b5d4000be /devtools | |
parent | 68d0602b0dc49f0ca1c3561613dc868ef5a94f93 (diff) | |
download | scummvm-rg350-d418cd0fd7ebc3847fcf7097281bb1580324295c.tar.gz scummvm-rg350-d418cd0fd7ebc3847fcf7097281bb1580324295c.tar.bz2 scummvm-rg350-d418cd0fd7ebc3847fcf7097281bb1580324295c.zip |
TOOLS: Add virtual keyboard feature selection to create_project
Diffstat (limited to 'devtools')
-rw-r--r-- | devtools/create_project/create_project.cpp | 1 | ||||
-rw-r--r-- | devtools/create_project/scripts/postbuild.cmd | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/devtools/create_project/create_project.cpp b/devtools/create_project/create_project.cpp index a597ba36e9..148cd40f0e 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 6c062f7ab1..e5f29058b9 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
|