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.
23 lines
565 B
23 lines
565 B
#!/bin/sh
|
|
|
|
PRECOMP_SUPPORT=no
|
|
XPLATFORM=`basename $1`
|
|
XCONFIG=$1/qmake.conf
|
|
VERBOSE=$2
|
|
|
|
>precomp_header.h
|
|
COMPILER=`grep QMAKE_CC $XCONFIG | sed "s,.*= *,,"`
|
|
if $COMPILER -x c-header precomp_header.h >/dev/null 2>&1; then
|
|
$COMPILER -x c++-header precomp_header.h && PRECOMP_SUPPORT=yes
|
|
fi
|
|
rm -f precomp_header.h precomp_header.h.gch
|
|
|
|
# done
|
|
if [ "$PRECOMP_SUPPORT" != "yes" ]; then
|
|
[ "$VERBOSE" = "yes" ] && echo "Precompiled-headers support disabled."
|
|
exit 0
|
|
else
|
|
[ "$VERBOSE" = "yes" ] && echo "Precompiled-headers support enabled."
|
|
exit 1
|
|
fi
|