aboutsummaryrefslogtreecommitdiff
path: root/tools/create_msvc/create_msvc.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2010-06-26 22:45:53 +0000
committerJohannes Schickel2010-06-26 22:45:53 +0000
commitce111a39df155f379ec829f66a39498bee303720 (patch)
tree8aaffe023f2df7611aef20834fac4ac5db43b27d /tools/create_msvc/create_msvc.cpp
parent14fdd11c04c587f5fe2abe446c49d178957f53db (diff)
downloadscummvm-rg350-ce111a39df155f379ec829f66a39498bee303720.tar.gz
scummvm-rg350-ce111a39df155f379ec829f66a39498bee303720.tar.bz2
scummvm-rg350-ce111a39df155f379ec829f66a39498bee303720.zip
Add flag to set USE_DETECTLANG in create_msvc.
svn-id: r50350
Diffstat (limited to 'tools/create_msvc/create_msvc.cpp')
-rw-r--r--tools/create_msvc/create_msvc.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/create_msvc/create_msvc.cpp b/tools/create_msvc/create_msvc.cpp
index dee91defdb..3019e219e4 100644
--- a/tools/create_msvc/create_msvc.cpp
+++ b/tools/create_msvc/create_msvc.cpp
@@ -840,7 +840,9 @@ const Feature s_features[] = {
{ "16bit", "USE_RGB_COLOR", "", true, "16bit color support" },
{ "mt32emu", "USE_MT32EMU", "", true, "integrated MT-32 emulator" },
{ "nasm", "USE_NASM", "", true, "IA-32 assembly support" }, // This feature is special in the regard, that it needs additional handling.
- { "translation", "USE_TRANSLATION", "", true, "Translation support" }
+ { "translation", "USE_TRANSLATION", "", true, "Translation 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...
};
} // End of anonymous namespace