TOOLS: Add ole32.lib and uuid.lib to Code::Blocks linked libraries

This commit is contained in:
Littleboy 2011-04-26 13:31:13 -04:00 committed by Julien
parent 2348eeed4c
commit fe347e4339

View File

@ -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: