##// END OF EJS Templates
Switch to speasy...
Switch to speasy Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1510:0046d29d6c44 PySide2
r1510:0046d29d6c44 PySide2
Show More
build.sh
15 lines | 637 B | application/x-sh | BashLexer
Added Meson support....
r620 #!/bin/bash
Updated OSX build with Python bundled inside SciQLop and also stick to Meson 0.49.1...
r1453 # On OS X only 0.49.1 works :(
pip3 install --upgrade --user meson==0.49.1
HERE=$( cd "$(dirname "$0")" ; pwd -P )
Added Meson support....
r620 mkdir build
Updated OSX build with Python bundled inside SciQLop and also stick to Meson 0.49.1...
r1453 ~/Library/Python/3.7/bin/meson -Dcpp_args='-DQT_STATICPLUGIN' -Ddefault_library=static --prefix=/tmp/SciQLOP.app --bindir=Contents/MacOS build
Added Meson support....
r620 cd build
ninja
ninja install
Updated OSX build with Python bundled inside SciQLop and also stick to Meson 0.49.1...
r1453 ~/Library/Python/3.7/bin/virtualenv --always-copy /tmp/SciQLOP.app
~/Library/Python/3.7/bin/virtualenv --relocatable /tmp/SciQLOP.app
OS X dmg build, activate venv to hide local packages...
r1454 source /tmp/SciQLOP.app/bin/activate
Switch to speasy...
r1510 /tmp/SciQLOP.app/bin/pip install speasy
Updated OSX build with Python bundled inside SciQLop and also stick to Meson 0.49.1...
r1453 cp $HERE/SciQLOP_wrapper /tmp/SciQLOP.app/Contents/MacOS/
chmod +x /tmp/SciQLOP.app/Contents/MacOS/SciQLOP_wrapper