aboutsummaryrefslogtreecommitdiff
path: root/tools/create_msvc
diff options
context:
space:
mode:
authorJohannes Schickel2010-06-15 19:21:20 +0000
committerJohannes Schickel2010-06-15 19:21:20 +0000
commita6fc45b29b07c6b619b4889893846e6dec151b34 (patch)
treedbebab1f7f20a5bca5136466eece0ce950f2f9eb /tools/create_msvc
parent49463c2bf95f8293746f2b6cb9420f313c6babf3 (diff)
downloadscummvm-rg350-a6fc45b29b07c6b619b4889893846e6dec151b34.tar.gz
scummvm-rg350-a6fc45b29b07c6b619b4889893846e6dec151b34.tar.bz2
scummvm-rg350-a6fc45b29b07c6b619b4889893846e6dec151b34.zip
Add translation feature support in create_msvc.
svn-id: r49886
Diffstat (limited to 'tools/create_msvc')
-rw-r--r--tools/create_msvc/create_msvc.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/tools/create_msvc/create_msvc.cpp b/tools/create_msvc/create_msvc.cpp
index f418971239..dee91defdb 100644
--- a/tools/create_msvc/create_msvc.cpp
+++ b/tools/create_msvc/create_msvc.cpp
@@ -835,11 +835,12 @@ const Feature s_features[] = {
{ "mpeg2", "USE_MPEG2", "libmpeg2.lib", false, "mpeg2 codec for cutscenes" },
// ScummVM feature flags
- { "scalers", "USE_SCALERS", "", true, "Scalers" },
- { "hqscalers", "USE_HQ_SCALERS", "", true, "HQ scalers" },
- { "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.
+ { "scalers", "USE_SCALERS", "", true, "Scalers" },
+ { "hqscalers", "USE_HQ_SCALERS", "", true, "HQ scalers" },
+ { "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" }
};
} // End of anonymous namespace