console: basic code.
This commit is contained in:
14
Console/main.cpp
Normal file
14
Console/main.cpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#include <QCoreApplication>
|
||||
|
||||
#include "Console.h"
|
||||
#include <Util.h>
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
QCoreApplication app(argc, argv);
|
||||
|
||||
Util::InitLogger("frelayConsole.log", "frelayConsole");
|
||||
qInstallMessageHandler(Util::ConsoleMsgHander);
|
||||
|
||||
return app.exec();
|
||||
}
|
||||
Reference in New Issue
Block a user