Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaid <Daid303@gmail.com>2013-06-17 12:59:08 +0400
committerDaid <Daid303@gmail.com>2013-06-17 12:59:08 +0400
commitd625ea9c5a3ea124734c901bf65ff9461bcadf04 (patch)
tree74975cb6dafc8d9292cb68f09d879f159f3ec29b
parent8af23eaf86c30719e46fc0b8bd8ffcfa5757659e (diff)
Build the engine for MacOS.
-rwxr-xr-xpackage.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/package.sh b/package.sh
index fb4ceaf198..8f349cd249 100755
--- a/package.sh
+++ b/package.sh
@@ -105,7 +105,10 @@ if [ "$BUILD_TARGET" = "darwin" ]; then
#Add cura version file (should read the version from the bundle with pyobjc, but will figure that out later)
echo $BUILD_NAME > scripts/darwin/dist/Cura.app/Contents/Resources/version
- cp CuraEngine scripts/darwin/dist/Cura.app/Contents/Resources/CuraEngine
+ rm -rf CuraEngine
+ git clone https://github.com/Ultimaker/CuraEngine
+ make -C CuraEngine
+ cp CuraEngine/CuraEngine scripts/darwin/dist/Cura.app/Contents/Resources/CuraEngine
cd scripts/darwin