diff options
author | freiro <f73b2894@opayq.com> | 2016-11-28 19:38:47 +0100 |
---|---|---|
committer | freiro <f73b2894@opayq.com> | 2016-11-30 15:47:09 +0100 |
commit | 0c22e52f52ace18fbc80a858faa931414d4eef86 (patch) | |
tree | 8a55f8f61e6737f4eb9ab8e4c7b43e59e173dc7b /CMakeLists.txt | |
parent | Merge pull request #2233 from Subv/warnings (diff) | |
download | yuzu-0c22e52f52ace18fbc80a858faa931414d4eef86.tar yuzu-0c22e52f52ace18fbc80a858faa931414d4eef86.tar.gz yuzu-0c22e52f52ace18fbc80a858faa931414d4eef86.tar.bz2 yuzu-0c22e52f52ace18fbc80a858faa931414d4eef86.tar.lz yuzu-0c22e52f52ace18fbc80a858faa931414d4eef86.tar.xz yuzu-0c22e52f52ace18fbc80a858faa931414d4eef86.tar.zst yuzu-0c22e52f52ace18fbc80a858faa931414d4eef86.zip |
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 5c9b7f86a..9a78028bc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -182,15 +182,15 @@ IF (APPLE) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++") set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -stdlib=libc++") -ELSEIF(MINGW) - # PSAPI is the Process Status API - set(PLATFORM_LIBRARIES winmm ws2_32 psapi imm32 version) - - # WSAPoll functionality doesn't exist before WinNT 6.x (Vista and up) - add_definitions(-D_WIN32_WINNT=0x0600) -ELSEIF(WIN32) +ELSEIF (WIN32) + #WSAPoll and other fileutil.cpp functionalities didn't exist before WinNT 6.x (Vista and up) + add_definitions(-D_WIN32_WINNT=0x0600 -DWINVER=0x0600) set(PLATFORM_LIBRARIES winmm ws2_32) -ELSEIF(CMAKE_SYSTEM_NAME MATCHES "^(Linux|kFreeBSD|GNU|SunOS)$") + if (MINGW) + # PSAPI is the Process Status API + set(PLATFORM_LIBRARIES winmm ws2_32 psapi imm32 version) + ENDIF (MINGW) +ELSEIF (CMAKE_SYSTEM_NAME MATCHES "^(Linux|kFreeBSD|GNU|SunOS)$") set(PLATFORM_LIBRARIES rt) ENDIF (APPLE) |