core/command: rewrite command parser with CLI11

This commit is contained in:
outfoxxed 2024-08-09 19:22:18 -07:00
parent bdbf5b9af9
commit 291179ede2
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
7 changed files with 185 additions and 129 deletions

View file

@ -58,11 +58,11 @@ class LogManager: public QObject {
Q_OBJECT;
public:
static void init();
static void init(bool color);
static void initFs();
static LogManager* instance();
bool colorLogs;
bool colorLogs = true;
signals:
void logMessage(LogMessage msg);