diff options
author | Craig Scott <craig.scott@crascit.com> | 2021-02-14 04:33:45 (GMT) |
---|---|---|
committer | Craig Scott <craig.scott@crascit.com> | 2021-02-14 04:33:45 (GMT) |
commit | d16830324f747653b9f464abd20d22fee2ed4109 (patch) | |
tree | 6637c16842369752d16258e089a42cd99779466f /Source/CPack/IFW/cmCPackIFWInstaller.cxx | |
parent | 7ed7db88a4c3efb93b0ee21e94aaef94e4d89e9d (diff) | |
download | CMake-d16830324f747653b9f464abd20d22fee2ed4109.zip CMake-d16830324f747653b9f464abd20d22fee2ed4109.tar.gz CMake-d16830324f747653b9f464abd20d22fee2ed4109.tar.bz2 |
CPackIFW: Improve warning and docs for show page list option
Diffstat (limited to 'Source/CPack/IFW/cmCPackIFWInstaller.cxx')
-rw-r--r-- | Source/CPack/IFW/cmCPackIFWInstaller.cxx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Source/CPack/IFW/cmCPackIFWInstaller.cxx b/Source/CPack/IFW/cmCPackIFWInstaller.cxx index d3c39e8..e0dd06b 100644 --- a/Source/CPack/IFW/cmCPackIFWInstaller.cxx +++ b/Source/CPack/IFW/cmCPackIFWInstaller.cxx @@ -188,9 +188,11 @@ void cmCPackIFWInstaller::ConfigureFromOptions() } else { cmCPackIFWLogger( WARNING, - "Option CPACK_IFW_PACKAGE_WIZARD_SHOW_PAGE_LIST is set to value \"" - << option << "\". But has no any effect for QtIFW less than 4.0 " - << "and will be skipped." << std::endl); + "Option CPACK_IFW_PACKAGE_WIZARD_SHOW_PAGE_LIST is set to \"" + << option + << "\", but it is only supported with QtIFW version 4.0 or later. " + "It is being ignored because you are using QtIFW version " + << this->Generator->FrameworkVersion.data() << std::endl); } } |