diff options
author | Gareth Stockwell <ext-gareth.stockwell@nokia.com> | 2010-02-10 13:20:09 (GMT) |
---|---|---|
committer | Gareth Stockwell <ext-gareth.stockwell@nokia.com> | 2010-02-18 16:34:03 (GMT) |
commit | f641369ceb7b7e2f95b9d0656b34c0517c5b95f7 (patch) | |
tree | 7fc21dfb5cce2e71d56484f9a20b23db305a8181 /qmake/qmake.pri | |
parent | a0659d940985e9278a08801c3035a71329671af0 (diff) | |
download | Qt-f641369ceb7b7e2f95b9d0656b34c0517c5b95f7.zip Qt-f641369ceb7b7e2f95b9d0656b34c0517c5b95f7.tar.gz Qt-f641369ceb7b7e2f95b9d0656b34c0517c5b95f7.tar.bz2 |
Factored readRegistryKey implementation out of qmake
This function is now implemented with its own header and source
files, rather than being embedded within the MSVC qmake generator.
The motivation for this is to allow code to be shared between
qmake and configure, both of which query the registry when built for
Windows.
Reviewed-by: Miikka Heikkinen
Diffstat (limited to 'qmake/qmake.pri')
-rw-r--r-- | qmake/qmake.pri | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/qmake/qmake.pri b/qmake/qmake.pri index efe4f36..a2ffe15 100644 --- a/qmake/qmake.pri +++ b/qmake/qmake.pri @@ -17,7 +17,8 @@ SOURCES += project.cpp property.cpp main.cpp generators/makefile.cpp \ generators/symbian/symmake.cpp \ generators/symbian/symmake_abld.cpp \ generators/symbian/symmake_sbsv2.cpp \ - generators/symbian/initprojectdeploy_symbian.cpp + generators/symbian/initprojectdeploy_symbian.cpp \ + windows/registry.cpp HEADERS += project.h property.h generators/makefile.h \ generators/unix/unixmake.h meta.h option.h cachekeys.h \ @@ -29,8 +30,8 @@ HEADERS += project.h property.h generators/makefile.h \ generators/symbian/symmake.h \ generators/symbian/symmake_abld.h \ generators/symbian/symmake_sbsv2.h \ - generators/symbian/epocroot.h \ - generators/symbian/initprojectdeploy_symbian.h + generators/symbian/initprojectdeploy_symbian.h \ + windows/registry.h contains(QT_EDITION, OpenSource) { DEFINES += QMAKE_OPENSOURCE_EDITION |