From e053d30bf75f311778ad745f7859a9733d6ce2e3 Mon Sep 17 00:00:00 2001 From: darkf Date: Sat, 15 Aug 2015 23:41:40 -0700 Subject: Fix building under MinGW --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 00d71dbdc..6cdac1177 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -155,7 +155,8 @@ IF (APPLE) 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) + # PSAPI is the Process Status API + set(PLATFORM_LIBRARIES winmm ws2_32 psapi iconv) # WSAPoll functionality doesn't exist before WinNT 6.x (Vista and up) add_definitions(-D_WIN32_WINNT=0x0600) -- cgit v1.2.3