summaryrefslogblamecommitdiff
path: root/scripts/kconfig/qconf-cfg.sh
blob: 117f36e568fc5e395f077db35c3be7cc19b3f6f3 (plain) (tree)
1
2
3
4
5
6
7
8
9


                                  



         
                               
 
                                                 
                    
                                                                                    



                    
                                        


                                                               


              
            
                                                      
                                                                     
                          

            
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0

cflags=$1
libs=$2
bin=$3

PKG="Qt5Core Qt5Gui Qt5Widgets"

if [ -z "$(command -v ${HOSTPKG_CONFIG})" ]; then
	echo >&2 "*"
	echo >&2 "* 'make xconfig' requires '${HOSTPKG_CONFIG}'. Please install it."
	echo >&2 "*"
	exit 1
fi

if ${HOSTPKG_CONFIG} --exists $PKG; then
	${HOSTPKG_CONFIG} --cflags ${PKG} > ${cflags}
	${HOSTPKG_CONFIG} --libs ${PKG} > ${libs}
	${HOSTPKG_CONFIG} --variable=host_bins Qt5Core > ${bin}
	exit 0
fi

echo >&2 "*"
echo >&2 "* Could not find Qt5 via ${HOSTPKG_CONFIG}."
echo >&2 "* Please install Qt5 and make sure it's in PKG_CONFIG_PATH"
echo >&2 "* You need $PKG"
echo >&2 "*"
exit 1