Changeset 54 for trunk/qmake/generators
- Timestamp:
- Jun 25, 2009, 11:18:10 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/qmake/generators/os2/gnumake.cpp
r52 r54 305 305 incsSemicolon += "$(QMAKESPECDIR)"; 306 306 t << "INCLUDEPATH = " << incsSemicolon << endl; 307 /* createCompilerResponseFiles() will need QAKESPECDIR expanded) */ 308 project->values("INCLUDEPATH").append(specdir()); 307 309 } 308 310 … … 527 529 static const char *vars[] = { "CFLAGS", /*<=*/ "QMAKE_CFLAGS", 528 530 "CXXFLAGS", /*<=*/ "QMAKE_CXXFLAGS", 529 "INCPATH", /*<=*/ "INC PATH" };531 "INCPATH", /*<=*/ "INCLUDEPATH" }; 530 532 531 533 /* QMAKE_XXX_RSP_VAR is used as a flag whether it is necessary to … … 545 547 if (file.open(QIODevice::WriteOnly | QIODevice::Text)) { 546 548 QTextStream rt(&file); 547 if (!qstrcmp(vars[i+1], "INC PATH")) {549 if (!qstrcmp(vars[i+1], "INCLUDEPATH")) { 548 550 QString opt = var("QMAKE_CFLAGS_INCDIR"); 549 551 rt << varGlue(vars[i+1], opt, "\n" + opt, QString::null); … … 581 583 * filenames with double quotes. However, this is not appropriate for make 582 584 * rule definitions (targets/dependencies) where Unix escaping is 583 * expected. For this reason, we must convert escaping using the q*584 * function that we define in writeMakefile() below*/585 * expected. For this reason, we must convert escaping to Unix mode using 586 * the q function that we define in writeMakefile() */ 585 587 if (isDosLikeShell()) { 586 588 QString ret = vars;
Note:
See TracChangeset
for help on using the changeset viewer.