diff options
author | Eugene Sandulenko | 2011-06-22 13:35:37 -0700 |
---|---|---|
committer | Eugene Sandulenko | 2011-06-22 13:35:37 -0700 |
commit | 33ce6e60fd98ea67e1e6606bfc7d693b27359bd7 (patch) | |
tree | 84caf43ce3848e1105a59539f2133471790ce760 /devtools | |
parent | afdfff02f1415f66856f273fcf9f30d7621d8953 (diff) | |
parent | 154c584d44d689f0a7b521b49c5ce245a52fb992 (diff) | |
download | scummvm-rg350-33ce6e60fd98ea67e1e6606bfc7d693b27359bd7.tar.gz scummvm-rg350-33ce6e60fd98ea67e1e6606bfc7d693b27359bd7.tar.bz2 scummvm-rg350-33ce6e60fd98ea67e1e6606bfc7d693b27359bd7.zip |
Merge pull request #26 from Littleboy/taskbar
Taskbar integration
Diffstat (limited to 'devtools')
-rw-r--r-- | devtools/create_project/create_project.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/devtools/create_project/create_project.cpp b/devtools/create_project/create_project.cpp index 29bc5bfcd5..35d08561bf 100644 --- a/devtools/create_project/create_project.cpp +++ b/devtools/create_project/create_project.cpp @@ -364,6 +364,11 @@ int main(int argc, char *argv[]) { provider = new CreateProjectTool::CodeBlocksProvider(globalWarnings, projectWarnings); + + // Those libraries are automatically added by MSVC, but we need to add them manually with mingw + setup.libraries.push_back("ole32"); + setup.libraries.push_back("uuid"); + break; case kProjectMSVC: @@ -774,6 +779,7 @@ const Feature s_features[] = { { "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" }, + { "taskbar", "USE_TASKBAR", "", true, "Taskbar integration support" }, { "translation", "USE_TRANSLATION", "", true, "Translation support" }, { "vkeybd", "ENABLE_VKEYBD", "", false, "Virtual keyboard support"}, { "langdetect", "USE_DETECTLANG", "", true, "System language detection support" } // This feature actually depends on "translation", there |