You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
292 B
11 lines
292 B
5 years ago
|
#!/bin/sh
|
||
|
|
||
|
# An attempt at providing a qmake wrapper for projects that
|
||
|
# lack native qmake support (ie, qmake is run by buildsystem
|
||
|
# instead of developer or fedora packager).
|
||
|
|
||
|
QMAKE="$(rpm --eval %{_qt5_qmake})"
|
||
|
QMAKE_FLAGS="$(rpm --eval %{?_qt5_qmake_flags})"
|
||
|
|
||
|
eval $QMAKE $QMAKE_FLAGS $@
|