Hide macos-only setting on non-macos

This commit is contained in:
Albert Vaca Cintora 2023-06-07 18:25:34 +02:00
parent 194a819302
commit dd187274f7

View file

@ -133,9 +133,11 @@ int main(int argc, char *argv[])
QCommandLineParser parser;
QCommandLineOption replaceOption({QStringLiteral("replace")}, i18n("Replace an existing instance"));
parser.addOption(replaceOption);
#ifdef Q_OS_MAC
QCommandLineOption macosPrivateDBusOption({QStringLiteral("use-private-dbus")},
i18n("Launch a private D-Bus daemon with kdeconnectd (macOS test-purpose only)"));
parser.addOption(macosPrivateDBusOption);
#endif
aboutData.setupCommandLine(&parser);
parser.process(app);