2 # SPDX-License-Identifier: GPL-2.0
4 PKG
="Qt5Core Qt5Gui Qt5Widgets"
6 if [ -z "$(command -v pkg-config)" ]; then
8 echo >&2 "* 'make xconfig' requires 'pkg-config'. Please install it."
13 if pkg-config
--exists $PKG; then
14 echo cflags
=\"-std=c
++11 -fPIC $
(pkg-config
--cflags $PKG)\"
15 echo libs
=\"$
(pkg-config
--libs $PKG)\"
16 echo moc
=\"$
(pkg-config
--variable=host_bins Qt5Core
)/moc
\"
21 echo >&2 "* Could not find Qt5 via pkg-config."
22 echo >&2 "* Please install Qt5 and make sure it's in PKG_CONFIG_PATH"