mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-28 17:29:19 +00:00
14 lines
330 B
C++
14 lines
330 B
C++
#include "app/App.hpp"
|
|
#include "app/Logger.hpp"
|
|
|
|
// ===================================================================
|
|
|
|
int main (int argc, char *argv[]) {
|
|
qInstallMessageHandler(logger);
|
|
|
|
QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
|
App::init(argc, argv);
|
|
|
|
// Run!
|
|
return App::getInstance()->exec();
|
|
}
|