mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-03 10:20:47 +00:00
build.sh: Check for qmake-qt5 (#434)
This commit is contained in:
parent
ec8d54b597
commit
b2c52a9aee
9
build.sh
9
build.sh
@ -21,8 +21,11 @@ if [ $? = 0 ]; then
|
||||
fi
|
||||
fi
|
||||
|
||||
# Check if qmake is available
|
||||
qmakepath=$(which qmake)
|
||||
# Check if either qmake or qmake-qt5 is available
|
||||
qmakepath=$(which qmake-qt5)
|
||||
if [ -z "$qmakepath" ]; then
|
||||
qmakepath=$(which qmake)
|
||||
fi
|
||||
if [ -z "$qmakepath" ]; then
|
||||
echo "You need qmake to build Cutter."
|
||||
echo "Please make sure qmake is in your PATH environment variable."
|
||||
@ -50,7 +53,7 @@ fi
|
||||
# Build
|
||||
mkdir "$BUILD"
|
||||
cd "$BUILD" || exit 1
|
||||
qmake "$QMAKE_CONF" ../src/Cutter.pro
|
||||
"$qmakepath" "$QMAKE_CONF" ../src/Cutter.pro
|
||||
make -j4
|
||||
ERR=$((ERR+$?))
|
||||
cd ..
|
||||
|
Loading…
Reference in New Issue
Block a user