diff --git a/qmake/generators/win32/msvc_vcproj.cpp b/qmake/generators/win32/msvc_vcproj.cpp index 379b4189cec..865ff8ca4ec 100644 --- a/qmake/generators/win32/msvc_vcproj.cpp +++ b/qmake/generators/win32/msvc_vcproj.cpp @@ -796,6 +796,13 @@ void VcprojGenerator::init() MakefileGenerator::init(); initOld(); // Currently calling old DSP code to set variables. CLEAN UP! +#if 0 + // Verbose output if "-d -d"... + qDebug("Generator: MSVC.NET: List of current variables:"); + for (ProValueMap::ConstIterator it = project->variables().begin(); it != project->variables().end(); ++it) + qDebug("Generator: MSVC.NET: %s => %s", qPrintable(it.key().toQString()), qPrintable(it.value().join(" | "))); +#endif + // Figure out what we're trying to build if(project->first("TEMPLATE") == "vcapp") { projectTarget = Application; @@ -1637,9 +1644,6 @@ void VcprojGenerator::initOld() project->values("MSVCPROJ_COPY_DLL").append(copydll); project->values("MSVCPROJ_COPY_DLL_DESC").append(deststr); } - - // Verbose output if "-d -d"... - outputVariables(); } // ------------------------------------------------------------------------------------------------ @@ -1688,13 +1692,4 @@ bool VcprojGenerator::openOutput(QFile &file, const QString &/*build*/) const return Win32MakefileGenerator::openOutput(file, QString()); } -void VcprojGenerator::outputVariables() -{ -#if 0 - qDebug("Generator: MSVC.NET: List of current variables:"); - for (ProValueMap::ConstIterator it = project->variables().begin(); it != project->variables().end(); ++it) - qDebug("Generator: MSVC.NET: %s => %s", qPrintable(it.key().toQString()), qPrintable(it.value().join(" | "))); -#endif -} - QT_END_NAMESPACE diff --git a/qmake/generators/win32/msvc_vcproj.h b/qmake/generators/win32/msvc_vcproj.h index 4567a90635b..03f8184f5d6 100644 --- a/qmake/generators/win32/msvc_vcproj.h +++ b/qmake/generators/win32/msvc_vcproj.h @@ -84,7 +84,6 @@ protected: virtual bool mergeBuildProject(MakefileGenerator *other); virtual bool openOutput(QFile &file, const QString &build) const; - virtual void outputVariables(); void initOld(); virtual void initProject();