소스 검색

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