diff options
Diffstat (limited to 'openscad.cc')
-rw-r--r-- | openscad.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/openscad.cc b/openscad.cc index 4d67b98..8dd7650 100644 --- a/openscad.cc +++ b/openscad.cc @@ -69,6 +69,9 @@ int main(int argc, char **argv) bool useGUI = true; #endif QApplication app(argc, argv, useGUI); +#ifdef __APPLE__ + app.setLibraryPaths(QStringList(app.applicationDirPath() + "/../PlugIns")); +#endif const char *filename = NULL; const char *stl_output_file = NULL; |