File tree Expand file tree Collapse file tree 1 file changed +16
-2
lines changed
Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash
22
33cd " $( dirname ${BASH_SOURCE[0]} ) "
4- RESULT=" ../tev.dmg"
54
5+ echo " Building backwards-compatible tev..."
6+ mkdir build-dmg && cd build-dmg
7+ MACOSX_DEPLOYMENT_TARGET=10.9
8+ cmake \
9+ -DCMAKE_OSX_SYSROOT=/Users/tom94/Projects/MacOSX-SDKs/MacOSX10.9.sdk/ \
10+ -DCMAKE_OSX_DEPLOYMENT_TARGET=10.9 \
11+ ../..
12+ make -j
13+ cd ..
14+
15+ echo " Creating dmg..."
16+ RESULT=" ../tev.dmg"
617test -f $RESULT && rm $RESULT
7- ./create-dmg/create-dmg --window-size 500 300 --icon-size 96 --volname " tev Installer" --app-drop-link 360 105 --icon tev.app 130 105 $RESULT /Applications/tev.app
18+ ./create-dmg/create-dmg --window-size 500 300 --icon-size 96 --volname " tev Installer" --app-drop-link 360 105 --icon tev.app 130 105 $RESULT ./build-dmg/tev.app
19+
20+ echo " Removing temporary build dir..."
21+ rm -rf build-dmg
You can’t perform that action at this time.
0 commit comments