diff options
| author | 2016-08-01 15:13:35 -0600 | |
|---|---|---|
| committer | 2016-11-13 23:50:46 -0700 | |
| commit | c3ea6f4ddb4aeed9663b5039e9ab11a7fef7c395 (patch) | |
| tree | 282996d714b4c104ae0270ba0c505160b05207d0 /src/citra_qt/main.cpp | |
| parent | Merge pull request #2171 from jroweboy/fix-mac-build (diff) | |
| download | yuzu-c3ea6f4ddb4aeed9663b5039e9ab11a7fef7c395.tar.gz yuzu-c3ea6f4ddb4aeed9663b5039e9ab11a7fef7c395.tar.xz yuzu-c3ea6f4ddb4aeed9663b5039e9ab11a7fef7c395.zip | |
Add mingw compile support
Diffstat (limited to 'src/citra_qt/main.cpp')
| -rw-r--r-- | src/citra_qt/main.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index b904fec16..99cc3f096 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp | |||
| @@ -48,6 +48,10 @@ | |||
| 48 | #include "qhexedit.h" | 48 | #include "qhexedit.h" |
| 49 | #include "video_core/video_core.h" | 49 | #include "video_core/video_core.h" |
| 50 | 50 | ||
| 51 | #ifdef QT_STATICPLUGIN | ||
| 52 | Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin); | ||
| 53 | #endif | ||
| 54 | |||
| 51 | GMainWindow::GMainWindow() : config(new Config()), emu_thread(nullptr) { | 55 | GMainWindow::GMainWindow() : config(new Config()), emu_thread(nullptr) { |
| 52 | Pica::g_debug_context = Pica::DebugContext::Construct(); | 56 | Pica::g_debug_context = Pica::DebugContext::Construct(); |
| 53 | 57 | ||