瀏覽代碼

Add OpenSCAD paths for windows

Johannes Kreutz 3 年之前
父節點
當前提交
81146e4e41
共有 1 個文件被更改,包括 1 次插入2 次删除
  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