use the same output dirs under windows as under unix
the times when directory names starting with a dot were a problem under windows are sort of gone. for well over a decade. Change-Id: Ia1a0782c878a055cc5c094c6b3e4df0741368433 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
This commit is contained in:
parent
0815563924
commit
eced14ec1c
@ -2681,9 +2681,9 @@ void Configure::generateOutputVars()
|
|||||||
if (dictionary.contains("XQMAKESPEC") && dictionary[ "XQMAKESPEC" ].startsWith("linux"))
|
if (dictionary.contains("XQMAKESPEC") && dictionary[ "XQMAKESPEC" ].startsWith("linux"))
|
||||||
qtConfig += "rpath";
|
qtConfig += "rpath";
|
||||||
|
|
||||||
qmakeVars += QString("OBJECTS_DIR = ") + formatPath("tmp/obj/" + dictionary["QMAKE_OUTDIR"]);
|
qmakeVars += QString("OBJECTS_DIR = ") + formatPath(".obj/" + dictionary["QMAKE_OUTDIR"]);
|
||||||
qmakeVars += QString("MOC_DIR = ") + formatPath("tmp/moc/" + dictionary["QMAKE_OUTDIR"]);
|
qmakeVars += QString("MOC_DIR = ") + formatPath(".moc/" + dictionary["QMAKE_OUTDIR"]);
|
||||||
qmakeVars += QString("RCC_DIR = ") + formatPath("tmp/rcc/" + dictionary["QMAKE_OUTDIR"]);
|
qmakeVars += QString("RCC_DIR = ") + formatPath(".rcc/" + dictionary["QMAKE_OUTDIR"]);
|
||||||
|
|
||||||
if (!qmakeDefines.isEmpty())
|
if (!qmakeDefines.isEmpty())
|
||||||
qmakeVars += QString("DEFINES += ") + qmakeDefines.join(' ');
|
qmakeVars += QString("DEFINES += ") + qmakeDefines.join(' ');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user