This commit is contained in:
Martin Rotter 2020-12-08 11:04:40 +01:00
parent f9082bd418
commit a8e3f4bbe6
2 changed files with 7 additions and 4 deletions

View File

@ -9,4 +9,6 @@ if [[ "$os" == *"ubuntu"* ]]; then
else
echo "We are building for Mac OS X."
is_linux=false
fi
fi
echo "OS: $os; qmake args: $qmake_args"

View File

@ -1,4 +1,5 @@
os = $args[0]
qmake_args = $args[1]
$os = $args[0]
$qmake_args = $args[1]
echo "We are building for GNU/Linux on Ubuntu."
echo "We are building for GNU/Linux on Ubuntu."
echo "OS: $os; qmake args: $qmake_args"