#include "facetracknoir.h" #include #include #ifdef _WIN32 # include #endif int main(int argc, char** argv) { #ifdef _WIN32 CoInitializeEx(NULL, COINIT_MULTITHREADED); #endif QApplication::setAttribute(Qt::AA_X11InitThreads, true); QApplication app(argc, argv); auto w = std::make_shared(); w->show(); app.exec(); return 0; }