diff options
author | md5 | 2011-05-29 12:33:54 +0300 |
---|---|---|
committer | md5 | 2011-05-29 12:35:11 +0300 |
commit | e42e83d303b5516c7ce40effcf975ec1d4228bca (patch) | |
tree | aaa57f1c4c9dd48ee6b2bf9fe38ae136979c1189 | |
parent | 625f6d3b0e04add1694be14eb44ee9aa3bd71fd8 (diff) | |
download | scummvm-rg350-e42e83d303b5516c7ce40effcf975ec1d4228bca.tar.gz scummvm-rg350-e42e83d303b5516c7ce40effcf975ec1d4228bca.tar.bz2 scummvm-rg350-e42e83d303b5516c7ce40effcf975ec1d4228bca.zip |
CREATE_PROJECT: Disable PNG, Theora and OpenGL by default.
PNG and Theora are used for the sword25 engine, which isn't stable yet.
OpenGL isn't stable yet.
-rw-r--r-- | devtools/create_project/create_project.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devtools/create_project/create_project.cpp b/devtools/create_project/create_project.cpp index 35f68a12c0..a48d4df786 100644 --- a/devtools/create_project/create_project.cpp +++ b/devtools/create_project/create_project.cpp @@ -725,8 +725,8 @@ const Feature s_features[] = { { "mad", "USE_MAD", "libmad", true, "libmad (MP3) support" }, { "vorbis", "USE_VORBIS", "libvorbisfile_static libvorbis_static libogg_static", true, "Ogg Vorbis support" }, { "flac", "USE_FLAC", "libFLAC_static", true, "FLAC support" }, - { "png", "USE_PNG", "libpng", true, "libpng support" }, - { "theora", "USE_THEORADEC", "libtheora_static", true, "Theora decoding support" }, + { "png", "USE_PNG", "libpng", false, "libpng support" }, + { "theora", "USE_THEORADEC", "libtheora_static", false, "Theora decoding support" }, { "mpeg2", "USE_MPEG2", "libmpeg2", false, "mpeg2 codec for cutscenes" }, // Feature flags @@ -735,7 +735,7 @@ 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. - { "opengl", "USE_OPENGL", "opengl32", true, "OpenGL support" }, + { "opengl", "USE_OPENGL", "opengl32", false, "OpenGL support" }, { "indeo3", "USE_INDEO3", "", true, "Indeo3 codec support"}, { "translation", "USE_TRANSLATION", "", true, "Translation support" }, { "vkeybd", "ENABLE_VKEYBD", "", false, "Virtual keyboard support"}, |