mirror of https://github.com/mono/CppSharp.git
c-sharpdotnetmonobindingsbridgecclangcpluspluscppsharpglueinteropparserparsingpinvokeswigsyntax-treevisitorsxamarinxamarin-bindings
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
318 B
15 lines
318 B
#!/usr/bin/env bash |
|
set -e |
|
dir=$(cd "$(dirname "$0")"; pwd) |
|
rootdir="$dir/../.." |
|
|
|
cd $dir |
|
|
|
if [ ! -d runtime ]; then |
|
git clone https://github.com/quickjs-ng/quickjs.git runtime |
|
git -C runtime reset --hard 0e5e9c2c49db15ab9579edeb4d90e610c8b8463f |
|
fi |
|
|
|
if [ ! -f runtime/build/qjs ]; then |
|
make -C runtime/ |
|
fi
|
|
|