Browse Source

added qmake check in build.sh

pull/3/head
jahway603 3 years ago
parent
commit
f54eb22d74
  1. 6
      build.sh
  2. 6
      docs/index.html

6
build.sh

@ -15,6 +15,12 @@ else
JOBS=1
fi
# Check if qmake is installed on system and exits if it is not
if ! [ -x "$(command -v qmake)" ]; then
echo 'Error: qmake is not installed. Install qmake and try again.' >&2
exit 1
fi
VERSION=$(cat src/version.h |cut -d\" -f2)
echo "Compiling SilentDragon $VERSION with $JOBS threads..."
CONF=silentdragon.pro

6
docs/index.html

@ -1,6 +0,0 @@
<html>
<head></head>
<body>
Hello World
</body>
</html>
Loading…
Cancel
Save