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:
authorAlexander Pinzon <apinzonf@gmail.com>2012-09-25 19:11:34 +0400
committerAlexander Pinzon <apinzonf@gmail.com>2012-09-25 19:11:34 +0400
commitc0a7773ccfec9ede40721b478a7efe4bac7369bd (patch)
treec02178e372b3f919f46bb4744a8790278754fcc5 /CMakeLists.txt
parent80fed19ffc74a792fb7fd533bf8d90cbf54a51f1 (diff)
Boost directories were not properly configured to vc2010.
Opencolorio directories and openimageio not work as you would expect macro
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 6fc84a47682..b39390c15b0 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1073,7 +1073,7 @@ elseif(WIN32)
set(BOOST ${LIBDIR}/boost)
set(BOOST_INCLUDE_DIR ${BOOST}/include)
if(MSVC10)
- set(BOOST_LIBPATH ${BOOST}/vc2010/lib)
+ set(BOOST_LIBPATH ${BOOST}/lib/vc_10)
set(BOOST_POSTFIX "vc100-mt-s-1_49.lib")
set(BOOST_DEBUG_POSTFIX "vc100-mt-sgd-1_49.lib")
else()
@@ -1109,7 +1109,7 @@ elseif(WIN32)
set(OPENCOLORIO ${LIBDIR}/opencolorio)
set(OPENCOLORIO_INCLUDE_DIRS ${OPENCOLORIO}/include)
set(OPENCOLORIO_LIBRARIES OpenColorIO)
- set_lib_path(OPENCOLORIO_LIBPATH "opencolorio/lib")
+ set(OPENCOLORIO_LIBPATH ${LIBDIR}/opencolorio/lib)
set(OPENCOLORIO_DEFINITIONS)
endif()