Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-kde
Path: blob/main/cad/antimony/files/patch-app_app_app.cpp
16461 views
1
--- app/app/app.cpp.orig 2023-01-16 19:49:55 UTC
2
+++ app/app/app.cpp
3
@@ -63,6 +63,10 @@ QStringList App::nodePaths() const
4
// If we're running Antimony from the build folder, use sb/nodes
5
paths << applicationDirPath() + "/sb/nodes";
6
paths << applicationDirPath() + "/../share/antimony/nodes";
7
+#elif defined Q_OS_FREEBSD
8
+ // If we're running Antimony from the build folder, use sb/nodes
9
+ paths << applicationDirPath() + "/sb/nodes";
10
+ paths << applicationDirPath() + "/../share/antimony/nodes";
11
#elif defined Q_OS_WIN32
12
// Windows only supports running from the build directory
13
paths << applicationDirPath() + "/sb/nodes";
14
15