mirror of https://github.com/qt/qtbase.git
syncqt only the QtCore headers for the bootstrap
Change-Id: I26e19805823bfe987c721f6a274803e54f0e4003 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
This commit is contained in:
parent
695051f3be
commit
f104640fa5
|
@ -3541,7 +3541,7 @@ fi
|
||||||
|
|
||||||
# symlink includes
|
# symlink includes
|
||||||
if [ -n "$PERL" ] && [ -x "$relpath/bin/syncqt" ]; then
|
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
|
fi
|
||||||
|
|
||||||
# $1: input variable name (awk regexp)
|
# $1: input variable name (awk regexp)
|
||||||
|
|
|
@ -57,7 +57,7 @@ if not exist include (
|
||||||
md mkspecs
|
md mkspecs
|
||||||
if errorlevel 1 goto exit
|
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
|
if errorlevel 1 goto exit
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -3420,7 +3420,7 @@ void Configure::generateHeaders()
|
||||||
cout << "Running syncqt..." << endl;
|
cout << "Running syncqt..." << endl;
|
||||||
QStringList args;
|
QStringList args;
|
||||||
args += buildPath + "/bin/syncqt.bat";
|
args += buildPath + "/bin/syncqt.bat";
|
||||||
args += "-minimal";
|
args << "-minimal" << "-module" << "QtCore";
|
||||||
args += sourcePath;
|
args += sourcePath;
|
||||||
int retc = Environment::execute(args, QStringList(), QStringList());
|
int retc = Environment::execute(args, QStringList(), QStringList());
|
||||||
if (retc) {
|
if (retc) {
|
||||||
|
|
Loading…
Reference in New Issue