mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-16 19:38:21 -05:00
Add mingw compile support
This commit is contained in:
@ -48,6 +48,10 @@
|
||||
#include "qhexedit.h"
|
||||
#include "video_core/video_core.h"
|
||||
|
||||
#ifdef QT_STATICPLUGIN
|
||||
Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin);
|
||||
#endif
|
||||
|
||||
GMainWindow::GMainWindow() : config(new Config()), emu_thread(nullptr) {
|
||||
Pica::g_debug_context = Pica::DebugContext::Construct();
|
||||
|
||||
|
@ -11,7 +11,8 @@
|
||||
#include "common/common_paths.h"
|
||||
#include "common/logging/log.h"
|
||||
#include "common/string_util.h"
|
||||
#ifdef _MSC_VER
|
||||
|
||||
#ifdef _WIN32
|
||||
#include <codecvt>
|
||||
#include <Windows.h>
|
||||
#include "common/common_funcs.h"
|
||||
@ -270,7 +271,7 @@ std::string ReplaceAll(std::string result, const std::string& src, const std::st
|
||||
return result;
|
||||
}
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#ifdef _WIN32
|
||||
|
||||
std::string UTF16ToUTF8(const std::u16string& input) {
|
||||
#if _MSC_VER >= 1900
|
||||
|
@ -14,7 +14,7 @@
|
||||
#include <numeric>
|
||||
#include <fcntl.h>
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#ifdef _WIN32
|
||||
#include <WinSock2.h>
|
||||
#include <common/x64/abi.h>
|
||||
#include <io.h>
|
||||
|
Reference in New Issue
Block a user