AUI Framework
develop
Cross-platform base for C++ UI apps
|
Determines whether the passed package name is a portable package that matches current arch and platform. More...
#include <AUI/Updater/AppropriatePortablePackagePredicate.h>
Public Member Functions# | |
bool | operator() (const AString &packageName) const noexcept |
AString | getQualifierDebug () const |
const AString & | getQualifier () const |
Signals and public fields# | |
AString | qualifier {} |
Package qualifier which is expected to be present in package name. | |
It's convenient to use it with find_if
:
AString aui::updater::AppropriatePortablePackagePredicate::qualifier {} |
If qualifier is empty, an AUI's package qualifier which is used as default name for portable packages is used.
Since AUI is only capable of unpacking ZIPs, this predicate checks for ".zip" extension.
Implemented as AString::contains with an additional check that "_" does not goes after, to distinguish x86_64
and x86
.
Linux x86_64 -> linux-x86_64
Windows arm64 -> windows-arm64
If you wish to publish portable packages with different qualifiers, you must specify it to this variable. As AUI's package name, it's convenient to evaluate the package name in CMake and pass it to your target with target_compile_definitions
.