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-04-24 13:58:03 +0400
committerAntony Riakiotakis <kalast@gmail.com>2012-04-24 13:58:03 +0400
commitb84cdafbb5e927407aec138dd96adb8fe556cbb3 (patch)
tree39d104530e75778435ae4b5f4a16c3b7fcb7aa8f /source/creator
parent9204f11052697dba84a961f9358219a803e46a66 (diff)
Add cycles support for MinGW-w64
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/CMakeLists.txt14
1 files changed, 8 insertions, 6 deletions
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index 3e1b7772d17..0168c06b7da 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -599,12 +599,14 @@ elseif(WIN32)
)
if(WITH_OPENIMAGEIO)
- set_lib_path(OIIOBIN "openimageio/bin")
- install(
- FILES
- ${OIIOBIN}/OpenImageIO.dll
- DESTINATION ${TARGETDIR}
- )
+ if(NOT MINGW)
+ set_lib_path(OIIOBIN "openimageio/bin")
+ install(
+ FILES
+ ${OIIOBIN}/OpenImageIO.dll
+ DESTINATION ${TARGETDIR}
+ )
+ endif()
endif()
elseif(APPLE)