summaryrefslogtreecommitdiffstats
path: root/qmake/project.h
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>2012-05-10 11:22:07 +0200
committerOswald Buddenhagen <oswald.buddenhagen@nokia.com>2012-06-19 16:46:02 +0200
commit16d5b6911f18977d92734eeea419b27408a08d40 (patch)
treefeb41a240a06a15c9cd4d8fa18cc5e774b8a8d42 /qmake/project.h
parentf86f3613a52568e216c98d8f19ecc5204e76c3fb (diff)
look for .qmake.conf files
this is the source dir equivalent of .qmake.cache and can be checked into the repository. it can be used to make project-wide settings, or just to signal the presence of an mkspecs/ directory. Change-Id: I5f1cebad2aa2a89e78089341b2051613b6b7a613 Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
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 aa31ec9897..e31adc8388 100644
--- a/qmake/project.h
+++ b/qmake/project.h
@@ -83,6 +83,7 @@ class QMakeProject
bool need_restart;
bool own_prop;
bool backslashWarned;
+ QString conffile;
QString cachefile;
QString pfile;
QMakeProperty *prop;
@@ -132,6 +133,7 @@ public:
QStringList userTestFunctions() { return testFunctions.keys(); }
QString projectFile();
+ QString confFile() const { return conffile; }
QString cacheFile() const { return cachefile; }
inline QMakeProperty *properties() { return prop; }