Skip to content
Snippets Groups Projects
Commit a8f8c00c authored by akiraohgaki's avatar akiraohgaki
Browse files

Set $PATH

parent e5361c50
No related branches found
No related tags found
No related merge requests found
...@@ -14,6 +14,9 @@ ...@@ -14,6 +14,9 @@
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {
// Init // Init
auto envPath = QGuiApplication::applicationDirPath() + ":" + QString::fromLocal8Bit(qgetenv("PATH").constData());
qputenv("PATH", envPath.toUtf8().constData());
QGuiApplication app(argc, argv); // This is backend program, but need GUI module QGuiApplication app(argc, argv); // This is backend program, but need GUI module
auto *configHandler = new ConfigHandler(&app); auto *configHandler = new ConfigHandler(&app);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment