mirror of
https://github.com/yuzu-emu/yuzu-android
synced 2025-08-02 02:22:25 -07:00
Fix building on MinGW
This commit is contained in:
@@ -117,6 +117,12 @@ IF (APPLE)
|
||||
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++")
|
||||
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -stdlib=libc++")
|
||||
ELSEIF(MINGW)
|
||||
# GCC does not support codecvt, so use iconv instead
|
||||
set(PLATFORM_LIBRARIES winmm ws2_32 iconv)
|
||||
|
||||
# WSAPoll functionality doesn't exist before WinNT 6.x (Vista and up)
|
||||
add_definitions(-D_WIN32_WINNT=0x0600)
|
||||
ELSEIF(WIN32)
|
||||
set(PLATFORM_LIBRARIES winmm ws2_32)
|
||||
ELSE()
|
||||
|
Reference in New Issue
Block a user