diff options
author | Konstantin Podsvirov <konstantin@podsvirov.pro> | 2017-08-08 16:57:24 (GMT) |
---|---|---|
committer | Konstantin Podsvirov <konstantin@podsvirov.pro> | 2017-08-09 21:20:11 (GMT) |
commit | 45623e7255b62c4cd17c01a687130f05deeaac1d (patch) | |
tree | f831e8eea5dc3672b6e8649ca2fa9fe4e93a5d39 /Source/CPack/IFW/cmCPackIFWGenerator.h | |
parent | 92d16be9e6578600a273b338d003eb8908e5ed4e (diff) | |
download | CMake-45623e7255b62c4cd17c01a687130f05deeaac1d.zip CMake-45623e7255b62c4cd17c01a687130f05deeaac1d.tar.gz CMake-45623e7255b62c4cd17c01a687130f05deeaac1d.tar.bz2 |
CPackIFW: Add CPACK_IFW_PACKAGE_FILE_EXTENSION variable
Add CPACK_IFW_PACKAGE_FILE_EXTENSION variable to customize
target binary format.
Diffstat (limited to 'Source/CPack/IFW/cmCPackIFWGenerator.h')
-rw-r--r-- | Source/CPack/IFW/cmCPackIFWGenerator.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/CPack/IFW/cmCPackIFWGenerator.h b/Source/CPack/IFW/cmCPackIFWGenerator.h index 8348cee..9d635f8 100644 --- a/Source/CPack/IFW/cmCPackIFWGenerator.h +++ b/Source/CPack/IFW/cmCPackIFWGenerator.h @@ -61,8 +61,8 @@ protected: const char* GetPackagingInstallPrefix() CM_OVERRIDE; /** - * @brief Extension of binary installer - * @return Executable suffix or value from default implementation + * @brief Target binary extension + * @return Executable suffix or disk image format */ const char* GetOutputExtension() CM_OVERRIDE; @@ -143,6 +143,7 @@ private: std::string BinCreator; std::string FrameworkVersion; std::string ExecutableSuffix; + std::string OutputExtension; bool OnlineOnly; bool ResolveDuplicateNames; |