mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 02:56:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
	
		
			931 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
	
		
			931 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include <QApplication>
 | |
| #include <QDir>
 | |
| #include <QFile>
 | |
| 
 | |
| #include "maindialog.hpp"
 | |
| 
 | |
| int main(int argc, char *argv[])
 | |
| {
 | |
|     QApplication app(argc, argv);
 | |
| 
 | |
|     // Now we make sure the current dir is set to application path
 | |
|     QDir dir(QCoreApplication::applicationDirPath());
 | |
| 
 | |
|     #ifdef Q_OS_MAC
 | |
|     if (dir.dirName() == "MacOS") {
 | |
|         dir.cdUp();
 | |
|         dir.cdUp();
 | |
|         dir.cdUp();
 | |
|     }
 | |
| 
 | |
|     // force Qt to load only LOCAL plugins, don't touch system Qt installation
 | |
|     QDir pluginsPath(QCoreApplication::applicationDirPath());
 | |
|     pluginsPath.cdUp();
 | |
|     pluginsPath.cd("Plugins");
 | |
| 
 | |
|     QStringList libraryPaths;
 | |
|     libraryPaths << pluginsPath.path() << QCoreApplication::applicationDirPath();
 | |
|     app.setLibraryPaths(libraryPaths);
 | |
|     #endif
 | |
| 
 | |
|     QDir::setCurrent(dir.absolutePath());
 | |
| 
 | |
|     MainDialog mainWin;
 | |
| 
 | |
|     if (mainWin.setup()) {
 | |
| 
 | |
|         mainWin.show();
 | |
|         return app.exec();
 | |
|     }
 | |
| 
 | |
|     return 0;
 | |
| }
 | |
| 
 |