Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-05-06 00:13:07 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-05-06 00:13:07 +0400
commit4c47a71e558bb00dde1891e0c3b903ac078d5e91 (patch)
tree077a799eee4c2e4aeac3744afc484db7d7a165e7 /CMakeLists.txt
parent60c5887fe8efcb88cadad5a06f955542d35e7270 (diff)
CMake: Edit recent commit, allow 64bit msvc2008
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 0b3874c1904..4a6aced3c20 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -959,8 +959,8 @@ elseif(WIN32)
if(MSVC)
# drop support for older MSVC
- if(MSVC_VERSION VERSION_LESS 1800)
- message(FATAL_ERROR "MSVC versions older then 2013 are no longer supported")
+ 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)