From 1cf1bb17dd2d9a161c6edc0d453b8c642daae34c Mon Sep 17 00:00:00 2001 From: Duke Date: Mon, 27 Feb 2023 12:22:24 -0800 Subject: [PATCH] Add qmake and make versions to build.sh output --- build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index d1acb70..d513134 100755 --- a/build.sh +++ b/build.sh @@ -29,12 +29,14 @@ then exit 1 fi +qmake --version + if ! command -v make &> /dev/null then echo "make could not be found. Please install it and try again." exit 1 fi - +make --version qbuild () { qmake $CONF -spec linux-clang CONFIG+=debug