diff options
author | Andre Heider | 2010-05-10 20:55:24 +0000 |
---|---|---|
committer | Andre Heider | 2010-05-10 20:55:24 +0000 |
commit | 99ee5701f5e8ffaa145caa06360283d2be54efed (patch) | |
tree | 8e3e5a223198a238edda298e6350242d98f9e178 | |
parent | a31de2adfa6818da700f82657dec6b79df9638c9 (diff) | |
download | scummvm-rg350-99ee5701f5e8ffaa145caa06360283d2be54efed.tar.gz scummvm-rg350-99ee5701f5e8ffaa145caa06360283d2be54efed.tar.bz2 scummvm-rg350-99ee5701f5e8ffaa145caa06360283d2be54efed.zip |
Fix build with scalers for msvc.
svn-id: r49001
-rw-r--r-- | tools/create_msvc/create_msvc.cpp | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/tools/create_msvc/create_msvc.cpp b/tools/create_msvc/create_msvc.cpp index c2934562d4..34530fa2de 100644 --- a/tools/create_msvc/create_msvc.cpp +++ b/tools/create_msvc/create_msvc.cpp @@ -825,16 +825,18 @@ TokenList tokenize(const std::string &input) { namespace { const Feature s_features[] = { // Libraries - { "libz", "USE_ZLIB", "zlib.lib", true, "zlib (compression) support" }, - { "mad", "USE_MAD", "libmad.lib", true, "libmad (MP3) support" }, - { "vorbis", "USE_VORBIS", "libvorbisfile_static.lib libvorbis_static.lib libogg_static.lib", true, "Ogg Vorbis support" }, - { "flac", "USE_FLAC", "libFLAC_static.lib", true, "FLAC support" }, - { "mpeg2", "USE_MPEG2", "libmpeg2.lib", false, "mpeg2 codec for cutscenes" }, + { "libz", "USE_ZLIB", "zlib.lib", true, "zlib (compression) support" }, + { "mad", "USE_MAD", "libmad.lib", true, "libmad (MP3) support" }, + { "vorbis", "USE_VORBIS", "libvorbisfile_static.lib libvorbis_static.lib libogg_static.lib", true, "Ogg Vorbis support" }, + { "flac", "USE_FLAC", "libFLAC_static.lib", true, "FLAC support" }, + { "mpeg2", "USE_MPEG2", "libmpeg2.lib", false, "mpeg2 codec for cutscenes" }, // ScummVM feature flags - { "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. }; } // End of anonymous namespace |