Browse Source

Add OpenSCAD paths for windows

Johannes Kreutz 2 years ago
parent
commit
81146e4e41
1 changed files with 1 additions and 2 deletions
  1. 1 2
      trackpoint-app/include/PlatformSupport.hpp

+ 1 - 2
trackpoint-app/include/PlatformSupport.hpp

@@ -7,7 +7,6 @@
   static std::string openScadPath = "openscad";
   static std::string fileDelimiter = "/";
 #elif defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__NT__) || defined(_WIN64)
-  // Currently unsupported
-  static std::string openScadPath = "";
+  static std::string openScadPath = "\"C:\\Program Files\\OpenSCAD\\openscad.exe\"";
   static std::string fileDelimiter = "\\";
 #endif