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:
authorJason Wilkins <Jason.A.Wilkins@gmail.com>2014-05-31 08:08:27 +0400
committerJason Wilkins <Jason.A.Wilkins@gmail.com>2014-05-31 08:08:27 +0400
commit0c3c49eee36faebb4dedeb879a3424479d0fd8c6 (patch)
tree4945996eee971569d2cd872ab39030b77812878d
parent5d3b635d310d39ca1e8fba85de313623c8d0c238 (diff)
fix: visual studio 2010 project built with cmake could not find libjpegsoc-2013-viewport_fx
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 65296731bed..138a30081ab 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1129,7 +1129,7 @@ elseif(WIN32)
set(PNG_LIBPATH ${PNG}/lib) # not cmake defined
endif()
- if(MSVC90)
+ if(MSVC90 OR MSVC10)
set(JPEG_NAMES ${JPEG_NAMES} libjpeg)
endif()
find_package(jpeg REQUIRED)