diff options
author | bunnei <bunneidev@gmail.com> | 2015-01-12 00:44:45 -0500 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-01-12 00:44:45 -0500 |
commit | 2f7069f9bda8ce466e99b1202eaa1cc06125fd6f (patch) | |
tree | 968b7da92722d34ab37153f39aedfed693fed376 /CMakeLists.txt | |
parent | eacc2a501ba75a4f89e172eafddbf590f7851add (diff) | |
parent | 67c644e317b2d7057f2f403ce2d095299319a2f2 (diff) |
Merge pull request #452 from darkf/mingwagain
Fix MinGW build, again
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 20a5a011a..d70c872b2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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() |