Make fake Qt arguments operations

This commit is contained in:
Martchus 2020-04-05 21:40:01 +02:00
parent 08bfdeed5e
commit 53b4cbd8e9
2 changed files with 3 additions and 1 deletions

View File

@ -113,7 +113,7 @@ set(META_APP_DESCRIPTION "Useful C++ classes and routines such as argument parse
set(META_FEATURES_FOR_COMPILER_DETECTION_HEADER cxx_thread_local)
set(META_VERSION_MAJOR 5)
set(META_VERSION_MINOR 3)
set(META_VERSION_PATCH 0)
set(META_VERSION_PATCH 1)
# find required 3rd party libraries
include(3rdParty)

View File

@ -18,6 +18,8 @@ FakeQtConfigArguments::FakeQtConfigArguments()
, m_qtQuickGuiArg(
"qt-quick-gui", 'q', "shows a Qt quick based graphical user interface (the application has not been built with Qt quick support)")
{
m_qtWidgetsGuiArg.setFlags(Argument::Flags::Operation);
m_qtQuickGuiArg.setFlags(Argument::Flags::Operation);
}
} // namespace CppUtilities