summaryrefslogtreecommitdiffstats
path: root/qmake/project.h
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>2012-06-12 20:15:41 +0200
committerOswald Buddenhagen <oswald.buddenhagen@nokia.com>2012-06-27 14:35:33 +0200
commit689aa4da2dd7c01ee487dc346db8fe6191c2da4a (patch)
tree18d444f2621cbf25a2fb2f6394409862a2025546 /qmake/project.h
parentb6b6e85f6b0f75898afc341a8792626ebb9b99ee (diff)
move cachefile_depth calculation out of project evaluator
it has no business there Change-Id: I6d1a4b55b5acacc470cc109a6c69a907abbba312 Reviewed-by: Mark Brand <mabrand@mabrand.nl>
Diffstat (limited to 'qmake/project.h')
-rw-r--r--qmake/project.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/qmake/project.h b/qmake/project.h
index cf71e5e72c..266053a972 100644
--- a/qmake/project.h
+++ b/qmake/project.h
@@ -82,6 +82,7 @@ class QMakeProject
bool need_restart;
bool own_prop;
bool backslashWarned;
+ QString project_build_root;
QString conffile;
QString superfile;
QString cachefile;
@@ -136,6 +137,7 @@ public:
QStringList userTestFunctions() { return testFunctions.keys(); }
QString projectFile();
+ QString buildRoot() const { return project_build_root; }
QString confFile() const { return conffile; }
QString cacheFile() const { return cachefile; }
QString specDir() const { return real_spec; }