mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Fix Qt build on Windows
This commit is contained in:
parent
3644657c89
commit
6d39fd64b3
3 changed files with 22 additions and 2 deletions
|
@ -147,6 +147,9 @@ external_stlport
|
||||||
thumbs.db
|
thumbs.db
|
||||||
Thumbs.db
|
Thumbs.db
|
||||||
*.tpl.php
|
*.tpl.php
|
||||||
|
.SyncID
|
||||||
|
.SyncIgnore
|
||||||
|
.SyncArchive
|
||||||
|
|
||||||
# build
|
# build
|
||||||
code/nel/build/*
|
code/nel/build/*
|
||||||
|
|
|
@ -104,7 +104,11 @@ static inline QString msgCoreLoadFailure(const QString &why)
|
||||||
return QCoreApplication::translate("Application", "Failed to load Core plugin: %1").arg(why);
|
return QCoreApplication::translate("Application", "Failed to load Core plugin: %1").arg(why);
|
||||||
}
|
}
|
||||||
|
|
||||||
sint main(int argc, char **argv)
|
#ifdef NL_OS_WINDOWS
|
||||||
|
int __stdcall WinMain(void *hInstance, void *hPrevInstance, void *lpCmdLine, int nShowCmd)
|
||||||
|
#else // NL_OS_WINDOWS
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
#endif // NL_OS_WINDOWS
|
||||||
{
|
{
|
||||||
// go nel!
|
// go nel!
|
||||||
new NLMISC::CApplicationContext;
|
new NLMISC::CApplicationContext;
|
||||||
|
@ -129,7 +133,11 @@ sint main(int argc, char **argv)
|
||||||
nlinfo("Welcome to NeL Object Viewer Qt!");
|
nlinfo("Welcome to NeL Object Viewer Qt!");
|
||||||
}
|
}
|
||||||
QApplication::setGraphicsSystem("raster");
|
QApplication::setGraphicsSystem("raster");
|
||||||
|
#ifdef NL_OS_WINDOWS
|
||||||
|
QApplication app(__argc, __argv);
|
||||||
|
#else // NL_OS_WINDOWS
|
||||||
QApplication app(argc, argv);
|
QApplication app(argc, argv);
|
||||||
|
#endif // NL_OS_WINDOWS
|
||||||
QSplashScreen *splash = new QSplashScreen();
|
QSplashScreen *splash = new QSplashScreen();
|
||||||
splash->setPixmap(QPixmap(":/images/nel_ide_load.png"));
|
splash->setPixmap(QPixmap(":/images/nel_ide_load.png"));
|
||||||
splash->show();
|
splash->show();
|
||||||
|
|
|
@ -87,9 +87,18 @@ void messageHandler(QtMsgType p_type, const char* p_msg)
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
sint main(int argc, char **argv)
|
#ifdef NL_OS_WINDOWS
|
||||||
|
int __stdcall WinMain(void *hInstance, void *hPrevInstance, void *lpCmdLine, int nShowCmd)
|
||||||
|
#else // NL_OS_WINDOWS
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
#endif // NL_OS_WINDOWS
|
||||||
{
|
{
|
||||||
|
#ifdef NL_OS_WINDOWS
|
||||||
|
|
||||||
|
QApplication app(__argc, __argv);
|
||||||
|
#else // NL_OS_WINDOWS
|
||||||
QApplication app(argc, argv);
|
QApplication app(argc, argv);
|
||||||
|
#endif // NL_OS_WINDOWS
|
||||||
QPixmap pixmap(":/images/georges_logo.png");
|
QPixmap pixmap(":/images/georges_logo.png");
|
||||||
NLQT::CGeorgesSplash splash;
|
NLQT::CGeorgesSplash splash;
|
||||||
splash.show();
|
splash.show();
|
||||||
|
|
Loading…
Reference in a new issue