#include #include #include #include #include int main(int argc, char *argv[]) { QApplication a(argc, argv); a.setApplicationName(APP_NAME); a.setApplicationDisplayName(APP_NAME); a.setApplicationVersion(APP_VERSION); Ember::AppDataStorage::initialize(); Ember::ProjectManager projectManager; Ember::MainWindow w(&projectManager); w.show(); return a.exec(); }