mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 12:56:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#include <QApplication>
 | 
						|
#include <QDir>
 | 
						|
 | 
						|
#include "mainwizard.hpp"
 | 
						|
 | 
						|
#ifdef MAC_OS_X_VERSION_MIN_REQUIRED
 | 
						|
#undef MAC_OS_X_VERSION_MIN_REQUIRED
 | 
						|
// We need to do this because of Qt: https://bugreports.qt-project.org/browse/QTBUG-22154
 | 
						|
#define MAC_OS_X_VERSION_MIN_REQUIRED __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__
 | 
						|
#endif // MAC_OS_X_VERSION_MIN_REQUIRED
 | 
						|
 | 
						|
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
 | 
						|
    // 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());
 | 
						|
 | 
						|
    Wizard::MainWizard wizard;
 | 
						|
 | 
						|
    wizard.show();
 | 
						|
    return app.exec();
 | 
						|
}
 |