Proper fix for CMake files

next time you're deprecating some platform, compiler, feature just either
mail in the ML telling about this or if you're not that lazy poke developers
online whether then can spot issues quick.

Or be ready to pick up stuff being done by the developers your change gives
headache to.
This commit is contained in:
Sergey Sharybin 2014-05-06 04:03:45 +06:00
parent 4c47a71e55
commit 678b3cbb4f
1 changed files with 3 additions and 5 deletions

View File

@ -958,11 +958,6 @@ elseif(WIN32)
if(MSVC)
# drop support for older MSVC
if(MSVC_VERSION VERSION_LESS 1800 AND (NOT CMAKE_CL_64))
message(FATAL_ERROR "MSVC versions older than 2013 are no longer supported")
endif()
set(PLATFORM_LINKLIBS ws2_32 vfw32 winmm kernel32 user32 gdi32 comdlg32 advapi32 shfolder shell32 ole32 oleaut32 uuid psapi)
# MSVC11 SDL is not hard linked to dxguid.lib
@ -1094,6 +1089,9 @@ elseif(WIN32)
set(PNG_LIBPATH ${PNG}/lib) # not cmake defined
endif()
if(MSVC90)
set(JPEG_NAMES ${JPEG_NAMES} libjpeg)
endif()
find_package(jpeg REQUIRED)
set(PTHREADS_INCLUDE_DIRS ${LIBDIR}/pthreads/include)