##// END OF EJS Templates
Promotes hedley dep...
Promotes hedley dep Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1454:99de6c65ff72 latest
r1506:ef7b62ddc473
Show More
build.sh
15 lines | 666 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
Updated OSX build with Python bundled inside SciQLop and also stick to Meson 0.49.1...
r1453 /tmp/SciQLOP.app/bin/pip install git+https://github.com/jeandet/spwc
cp $HERE/SciQLOP_wrapper /tmp/SciQLOP.app/Contents/MacOS/
chmod +x /tmp/SciQLOP.app/Contents/MacOS/SciQLOP_wrapper