From 67c644e317b2d7057f2f403ce2d095299319a2f2 Mon Sep 17 00:00:00 2001 From: darkf Date: Thu, 8 Jan 2015 20:20:51 -0800 Subject: Fix building on MinGW --- CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 20a5a011..d70c872b 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() -- cgit v1.2.3