We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf3d5aa commit 0b4ca4dCopy full SHA for 0b4ca4d
meson.sh
@@ -0,0 +1,12 @@
1
+#!/bin/sh
2
+
3
+if test ! -d venv; then
4
+ python3 -m venv ./venv
5
+ ./venv/bin/pip install --upgrade pip
6
+ ./venv/bin/pip install git+https://github.com/serebit/meson.git@iterative-transitive-link-dep-resolve
7
+fi
8
+# shellcheck disable=SC1091
9
+# SC1091: Not following: ... was not specified as input (see shellcheck -x).
10
+. ./venv/bin/activate
11
12
+meson "${@}"
0 commit comments