Skip to content

Commit

Permalink
TOOLS: Add virtual keyboard feature selection to create_project
Browse files Browse the repository at this point in the history
  • Loading branch information
Templier committed Apr 27, 2011
1 parent 68d0602 commit d418cd0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions devtools/create_project/create_project.cpp
Expand Up @@ -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...
};
Expand Down
2 changes: 2 additions & 0 deletions devtools/create_project/scripts/postbuild.cmd
Expand Up @@ -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
Expand Down

0 comments on commit d418cd0

Please sign in to comment.