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:
authorNathan Letwory <nathan@letworyinteractive.com>2010-10-05 17:39:45 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2010-10-05 17:39:45 +0400
commit31ff2a6da254e17603f677261c79ce799d51db59 (patch)
treef2da71a3939c985ddc3515dc1b9e5296e032d0d2 /build_files/cmake
parent1bf56930ac18c7ae6c37079fb25446108e1e7309 (diff)
Enable lcms support on Windows.
Diffstat (limited to 'build_files/cmake')
-rw-r--r--build_files/cmake/macros.cmake8
1 files changed, 7 insertions, 1 deletions
diff --git a/build_files/cmake/macros.cmake b/build_files/cmake/macros.cmake
index 0957ace301c..08a571cceaf 100644
--- a/build_files/cmake/macros.cmake
+++ b/build_files/cmake/macros.cmake
@@ -172,11 +172,17 @@ MACRO(SETUP_LIBLINKS
TARGET_LINK_LIBRARIES(${target} optimized ${EXPAT_LIB})
ENDIF(EXPAT_LIB)
ELSE(WIN32)
- TARGET_LINK_LIBRARIES(${target} ${OPENCOLLADA_LIB})
+ TARGET_LINK_LIBRARIES(${target} ${OPENCOLLADA_LIB})
TARGET_LINK_LIBRARIES(${target} ${PCRE_LIB})
TARGET_LINK_LIBRARIES(${target} ${EXPAT_LIB})
ENDIF(WIN32)
ENDIF(WITH_OPENCOLLADA)
+ IF(WITH_LCMS)
+ IF(WIN32)
+ TARGET_LINK_LIBRARIES(${target} debug ${LCMS_LIB}_d)
+ TARGET_LINK_LIBRARIES(${target} optimized ${LCMS_LIB})
+ ENDIF(WIN32)
+ ENDIF(WITH_LCMS)
IF(WIN32)
TARGET_LINK_LIBRARIES(${target} ${PTHREADS_LIB})
ENDIF(WIN32)