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:
authorAntony Riakiotakis <kalast@gmail.com>2012-09-16 22:05:32 +0400
committerAntony Riakiotakis <kalast@gmail.com>2012-09-16 22:05:32 +0400
commit237a9fde92111ed415071e2a6a0bacc955294335 (patch)
treedb2d2224e6e5a3bc080b8ae864a1828b8a0f6f23 /source/creator
parente5d0dcb8d8ecc4782f1a7df890ee2c8ff5ca94c1 (diff)
Enable OpenColorIO for MinGW64 build targets
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/CMakeLists.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index 3356091b97f..4a460d7cc05 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -646,13 +646,19 @@ elseif(WIN32)
endif()
if(WITH_OPENCOLORIO)
+ set_lib_path(OCIOBIN "opencolorio/bin")
if(NOT MINGW)
- set_lib_path(OCIOBIN "opencolorio/bin")
install(
FILES
${OCIOBIN}/OpenColorIO.dll
DESTINATION ${TARGETDIR}
)
+ else()
+ install(
+ FILES
+ ${OCIOBIN}/libOpenColorIO.dll
+ DESTINATION ${TARGETDIR}
+ )
endif()
endif()