- #pragma once
- #if __APPLE__
- static std::string openScadPath = "/Applications/OpenSCAD.app/Contents/MacOS/OpenSCAD";
- static std::string fileDelimiter = "/";
- #elif __unix__
- 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 fileDelimiter = "\\";
- #endif
|