forked from qt-creator/qt-creator
Fixed debug output.
Change-Id: I2edff4126f3504661957529c198a1fc1ea169a08 Reviewed-by: Erik Verbruggen <erik.verbruggen@nokia.com>
This commit is contained in:
@@ -908,11 +908,12 @@ void CppModelManager::updateProjectInfo(const ProjectInfo &pinfo)
|
|||||||
#if 0
|
#if 0
|
||||||
// Tons of debug output...
|
// Tons of debug output...
|
||||||
qDebug()<<"========= CppModelManager::updateProjectInfo ======";
|
qDebug()<<"========= CppModelManager::updateProjectInfo ======";
|
||||||
qDebug()<<" for project:"<< pinfo.project.data()->file()->fileName();
|
qDebug()<<" for project:"<< pinfo.project().data()->document()->fileName();
|
||||||
foreach (const ProjectPart::Ptr &part, pinfo.projectParts) {
|
foreach (const ProjectPart::Ptr &part, pinfo.projectParts()) {
|
||||||
qDebug() << "=== part ===";
|
qDebug() << "=== part ===";
|
||||||
qDebug() << "language:" << (part->language == CXX ? "C++" : "ObjC++");
|
qDebug() << "language:" << (part->language == CXX ? "C++" : "ObjC++");
|
||||||
qDebug() << "compilerflags:" << part->flags;
|
qDebug() << "C++11:" << part->cxx11Enabled;
|
||||||
|
qDebug() << "Qt version:" << part->qtVersion;
|
||||||
qDebug() << "precompiled header:" << part->precompiledHeaders;
|
qDebug() << "precompiled header:" << part->precompiledHeaders;
|
||||||
qDebug() << "defines:" << part->defines;
|
qDebug() << "defines:" << part->defines;
|
||||||
qDebug() << "includes:" << part->includePaths;
|
qDebug() << "includes:" << part->includePaths;
|
||||||
|
Reference in New Issue
Block a user