diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2017-08-31 14:32:14 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2017-09-07 15:53:19 (GMT) |
commit | 37ef18a468149ba579b96a763ea3042a360652d7 (patch) | |
tree | 5e83e53948d42c288d473690886ba9c24f9bfc34 /Source/cmQtAutoGenDigest.h | |
parent | 761b3d79746ab91219d6478a021ba3a1c56f05c8 (diff) | |
download | CMake-37ef18a468149ba579b96a763ea3042a360652d7.zip CMake-37ef18a468149ba579b96a763ea3042a360652d7.tar.gz CMake-37ef18a468149ba579b96a763ea3042a360652d7.tar.bz2 |
Autogen: Pass RCC build names and function names in info file
- The output file name of the `rcc` command get computed once
in the AUTOGEN initializer and is passed in the info file.
- The function name for the `-name` option of `rcc` gets computed
once in the AUTOGEN initializer and is passed along with the
other `rcc` options in the info file.
Diffstat (limited to 'Source/cmQtAutoGenDigest.h')
-rw-r--r-- | Source/cmQtAutoGenDigest.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmQtAutoGenDigest.h b/Source/cmQtAutoGenDigest.h index 2bd9f04..e756a94 100644 --- a/Source/cmQtAutoGenDigest.h +++ b/Source/cmQtAutoGenDigest.h @@ -16,13 +16,17 @@ class cmQtAutoGenDigestQrc public: cmQtAutoGenDigestQrc() : Generated(false) + , Unique(false) { } public: std::string QrcFile; + std::string QrcName; + std::string PathChecksum; std::string RccFile; bool Generated; + bool Unique; std::vector<std::string> Options; std::vector<std::string> Resources; }; |