aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLittleboy2011-04-26 13:31:13 -0400
committerJulien2011-06-16 10:36:41 -0400
commitfe347e4339e25607c4f35ca4892ef9f4b4211108 (patch)
tree3c93a2ec8b11e07699224109f891c652cbffc153
parent2348eeed4c4c5f6bb55d9d566d7adbfa2f0c1136 (diff)
downloadscummvm-rg350-fe347e4339e25607c4f35ca4892ef9f4b4211108.tar.gz
scummvm-rg350-fe347e4339e25607c4f35ca4892ef9f4b4211108.tar.bz2
scummvm-rg350-fe347e4339e25607c4f35ca4892ef9f4b4211108.zip
TOOLS: Add ole32.lib and uuid.lib to Code::Blocks linked libraries
-rw-r--r--devtools/create_project/create_project.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/devtools/create_project/create_project.cpp b/devtools/create_project/create_project.cpp
index 29bc5bfcd5..aafbe7585b 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: