diff options
| author | 2016-08-01 15:13:35 -0600 | |
|---|---|---|
| committer | 2016-11-13 23:50:46 -0700 | |
| commit | c3ea6f4ddb4aeed9663b5039e9ab11a7fef7c395 (patch) | |
| tree | 282996d714b4c104ae0270ba0c505160b05207d0 /src | |
| 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')
| -rw-r--r-- | src/citra_qt/main.cpp | 4 | ||||
| -rw-r--r-- | src/common/string_util.cpp | 5 | ||||
| -rw-r--r-- | src/core/gdbstub/gdbstub.cpp | 2 |
3 files changed, 8 insertions, 3 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 | ||
diff --git a/src/common/string_util.cpp b/src/common/string_util.cpp index 596ae01bf..df1008180 100644 --- a/src/common/string_util.cpp +++ b/src/common/string_util.cpp | |||
| @@ -11,7 +11,8 @@ | |||
| 11 | #include "common/common_paths.h" | 11 | #include "common/common_paths.h" |
| 12 | #include "common/logging/log.h" | 12 | #include "common/logging/log.h" |
| 13 | #include "common/string_util.h" | 13 | #include "common/string_util.h" |
| 14 | #ifdef _MSC_VER | 14 | |
| 15 | #ifdef _WIN32 | ||
| 15 | #include <codecvt> | 16 | #include <codecvt> |
| 16 | #include <Windows.h> | 17 | #include <Windows.h> |
| 17 | #include "common/common_funcs.h" | 18 | #include "common/common_funcs.h" |
| @@ -270,7 +271,7 @@ std::string ReplaceAll(std::string result, const std::string& src, const std::st | |||
| 270 | return result; | 271 | return result; |
| 271 | } | 272 | } |
| 272 | 273 | ||
| 273 | #ifdef _MSC_VER | 274 | #ifdef _WIN32 |
| 274 | 275 | ||
| 275 | std::string UTF16ToUTF8(const std::u16string& input) { | 276 | std::string UTF16ToUTF8(const std::u16string& input) { |
| 276 | #if _MSC_VER >= 1900 | 277 | #if _MSC_VER >= 1900 |
diff --git a/src/core/gdbstub/gdbstub.cpp b/src/core/gdbstub/gdbstub.cpp index ceb993ea1..aea43e92b 100644 --- a/src/core/gdbstub/gdbstub.cpp +++ b/src/core/gdbstub/gdbstub.cpp | |||
| @@ -14,7 +14,7 @@ | |||
| 14 | #include <numeric> | 14 | #include <numeric> |
| 15 | #include <fcntl.h> | 15 | #include <fcntl.h> |
| 16 | 16 | ||
| 17 | #ifdef _MSC_VER | 17 | #ifdef _WIN32 |
| 18 | #include <WinSock2.h> | 18 | #include <WinSock2.h> |
| 19 | #include <common/x64/abi.h> | 19 | #include <common/x64/abi.h> |
| 20 | #include <io.h> | 20 | #include <io.h> |