summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/config.tests/unix/precomp.test
blob: 1a553d352a6db86559576374cd81a0e7a2081d9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/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