Skip to content

Commit

Permalink
Merge pull request #10 from rfranke/win
Browse files Browse the repository at this point in the history
attempt to fix Cpp under Windows when using gcc
  • Loading branch information
adeas31 committed Feb 10, 2016
2 parents 104cbca + bcf2cbc commit 81114ba
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 81114ba

Please sign in to comment.