From fe347e4339e25607c4f35ca4892ef9f4b4211108 Mon Sep 17 00:00:00 2001 From: Littleboy Date: Tue, 26 Apr 2011 13:31:13 -0400 Subject: TOOLS: Add ole32.lib and uuid.lib to Code::Blocks linked libraries --- devtools/create_project/create_project.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'devtools') 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: -- cgit v1.2.3