Skip to content

Commit

Permalink
attempt to fix Cpp under Windows when using gcc
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruediger Franke committed Feb 10, 2016
1 parent 104cbca commit bcf2cbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OMEdit/OMEditGUI/Util/StringHandler.cpp
Expand Up @@ -1478,7 +1478,7 @@ QProcessEnvironment StringHandler::simulationProcessEnvironment()
{
QProcessEnvironment environment = QProcessEnvironment::systemEnvironment();
QString OMHOME = QString(Helper::OpenModelicaHome).replace("/", "\\");
QString OMHOMEBin = OMHOME + "\\bin;" + OMHOME + "\\lib\\omc\\msvc;" + OMHOME + "\\lib\\omc\\cpp\\msvc";
QString OMHOMEBin = OMHOME + "\\bin;" + OMHOME + "\\lib\\omc\\msvc;" + OMHOME + "\\lib\\omc\\cpp;" + OMHOME + "\\lib\\omc\\cpp\\msvc";
environment.insert("PATH", OMHOMEBin + ";" + environment.value("PATH"));
return environment;
}
Expand Down

0 comments on commit bcf2cbc

Please sign in to comment.