author | kergoth <kergoth> | 2003-01-16 06:18:34 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-01-16 06:18:34 (UTC) |
commit | 9a90cb1a9e61d2bc3298f2131671d9f32abbac5a (patch) (side-by-side diff) | |
tree | 1d2d0eb0372f32e682fe139b3e89882f381dc0db /qmake | |
parent | 216efd1cb2210211816b865b5574866e598bf3bd (diff) | |
download | opie-9a90cb1a9e61d2bc3298f2131671d9f32abbac5a.zip opie-9a90cb1a9e61d2bc3298f2131671d9f32abbac5a.tar.gz opie-9a90cb1a9e61d2bc3298f2131671d9f32abbac5a.tar.bz2 |
i18n for new buildsystem :)
-rw-r--r-- | qmake/generators/unix/unixmake2.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qmake/generators/unix/unixmake2.cpp b/qmake/generators/unix/unixmake2.cpp index 1797b98..cbe2014 100644 --- a/qmake/generators/unix/unixmake2.cpp +++ b/qmake/generators/unix/unixmake2.cpp @@ -207,16 +207,17 @@ UnixMakefileGenerator::writeMakeParts(QTextStream &t) t << "INCREMENTAL_OBJMOC = " << incrs_out.join(" \\\n\t\t") << endl; } } else { t << "OBJMOC = " << objMoc << endl; } if(do_incremental && !moc_incremental && !src_incremental) do_incremental = FALSE; t << "DIST = " << varList("DISTFILES") << endl; + t << "PRO = " << fileFixify(project->projectFile()) << endl; t << "QMAKE_TARGET = " << var("QMAKE_ORIG_TARGET") << endl; t << "DESTDIR = " << var("DESTDIR") << endl; t << "TARGET = " << var("TARGET") << endl; if(project->isActiveConfig("plugin") ) { t << "TARGETD = " << var("TARGET") << endl; } else if (!project->isActiveConfig("staticlib") && project->variables()["QMAKE_APP_FLAG"].isEmpty()) { t << "TARGETA = " << var("TARGETA") << endl; if (os == "hpux") { |