From 04dbfdc97e94e6f477675b9d3135164752a7cfef Mon Sep 17 00:00:00 2001 From: Dominick Allen Date: Mon, 16 Sep 2024 12:40:06 -0500 Subject: Abort minizip attempt --- src/main.cpp | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index bb08972..9a57bfc 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,8 +1,16 @@ #include "main_window.hpp" -int main(int argc, char* argv[]) { +int main(int argc, char* argv[]) +{ QApplication app{argc, argv}; - getsuyobi::GetsuyobiApp getsuyobi{}; + getsuyomi::GetsuyomiApp getsuyobi{}; + + QCommandLineParser parser; + parser.setApplicationDescription(QApplication::translate("main", "A comic book and manga reader")); + parser.addHelpOption(); + parser.addVersionOption(); + + parser.process(app); return app.exec(); } -- cgit v1.2.3