Changeset 696
- Timestamp:
- Mar 16, 2010, 11:07:18 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/demos/qtdemo/menumanager.cpp
r651 r696 326 326 //make sure it finds the dlls on windows 327 327 QProcessEnvironment env = QProcessEnvironment::systemEnvironment(); 328 env.insert(QLatin1String("PATH"), QLibraryInfo::location(QLibraryInfo::BinariesPath) 328 env.insert(QLatin1String("PATH"), QLibraryInfo::location(QLibraryInfo::BinariesPath) 329 329 + QLatin1Char(';') + env.value(QLatin1String("Path"))); 330 330 process->setProcessEnvironment(env); … … 436 436 QFile unixFile(dir.path() + "/" + fileName); 437 437 if (unixFile.exists()) return unixFile.fileName(); 438 439 438 440 QFile winR(dir.path() + "\\release\\" + fileName + ".exe"); 439 441 if (winR.exists()) return winR.fileName();
Note:
See TracChangeset
for help on using the changeset viewer.