[Scummvm-cvs-logs] SF.net SVN: scummvm:[49001] scummvm/trunk/tools/create_msvc/create_msvc.cpp

dhewg at users.sourceforge.net dhewg at users.sourceforge.net
Mon May 10 22:55:25 CEST 2010


Revision: 49001
          http://scummvm.svn.sourceforge.net/scummvm/?rev=49001&view=rev
Author:   dhewg
Date:     2010-05-10 20:55:24 +0000 (Mon, 10 May 2010)

Log Message:
-----------
Fix build with scalers for msvc.

Modified Paths:
--------------
    scummvm/trunk/tools/create_msvc/create_msvc.cpp

Modified: scummvm/trunk/tools/create_msvc/create_msvc.cpp
===================================================================
--- scummvm/trunk/tools/create_msvc/create_msvc.cpp	2010-05-10 20:32:55 UTC (rev 49000)
+++ scummvm/trunk/tools/create_msvc/create_msvc.cpp	2010-05-10 20:55:24 UTC (rev 49001)
@@ -825,16 +825,18 @@
 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
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list