syncqt only the QtCore headers for the bootstrap

Change-Id: I26e19805823bfe987c721f6a274803e54f0e4003
Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
This commit is contained in:
Oswald Buddenhagen 2012-09-18 17:20:36 +02:00 committed by The Qt Project
parent 695051f3be
commit f104640fa5
3 changed files with 3 additions and 3 deletions

2
configure vendored
View File

@ -3541,7 +3541,7 @@ fi
# symlink includes
if [ -n "$PERL" ] && [ -x "$relpath/bin/syncqt" ]; then
"$outpath/bin/syncqt" -minimal "$relpath" || exit 1
"$outpath/bin/syncqt" -minimal -module QtCore "$relpath" || exit 1
fi
# $1: input variable name (awk regexp)

View File

@ -57,7 +57,7 @@ if not exist include (
md mkspecs
if errorlevel 1 goto exit
)
perl %QTSRC%bin\syncqt -minimal -outdir %QTDIR% %QTSRC%
perl %QTSRC%bin\syncqt -minimal -module QtCore -outdir %QTDIR% %QTSRC%
if errorlevel 1 goto exit
)

View File

@ -3420,7 +3420,7 @@ void Configure::generateHeaders()
cout << "Running syncqt..." << endl;
QStringList args;
args += buildPath + "/bin/syncqt.bat";
args += "-minimal";
args << "-minimal" << "-module" << "QtCore";
args += sourcePath;
int retc = Environment::execute(args, QStringList(), QStringList());
if (retc) {