#############################
##Select the build target
-# BUILD_TARGET=${1:-all}
+BUILD_TARGET=${1:-all}
#BUILD_TARGET=win32
#BUILD_TARGET=linux
-BUILD_TARGET=darwin
+#BUILD_TARGET=darwin
##Do we need to create the final archive
ARCHIVE_FOR_DISTRIBUTION=1
exit 1
fi
+python -c 'import numpy'
+if [ $? != 0 ]; then
+ echo "Requires numpy."
+ exit 1
+fi
+
+python -c 'import power'
+if [ $? != 0 ]; then
+ echo "Requires power module from https://github.com/GreatFruitOmsk/Power."
+ exit 1
+fi
+
SCRIPT_DIR=`dirname $0`
cd $SCRIPT_DIR
python -m Cura.cura $@