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
path: root/intern
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-03-26 16:38:37 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-03-26 17:29:01 +0300
commit7574f90a71791dd3eca93c474cb766f679c0c3eb (patch)
tree92dbd79f4e2c51fc4dfa6bb4b4d6f864d12e5312 /intern
parent52aa35ec1e8a35032594e88f7053929f9bd8f1bc (diff)
Fix Cycles standalone build, needs OpenJPEG libraries with OIIO now.
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/app/CMakeLists.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/intern/cycles/app/CMakeLists.txt b/intern/cycles/app/CMakeLists.txt
index 554c3c263ae..2d7db860b09 100644
--- a/intern/cycles/app/CMakeLists.txt
+++ b/intern/cycles/app/CMakeLists.txt
@@ -58,7 +58,8 @@ link_directories(${OPENIMAGEIO_LIBPATH}
${JPEG_LIBPATH}
${ZLIB_LIBPATH}
${TIFF_LIBPATH}
- ${OPENEXR_LIBPATH})
+ ${OPENEXR_LIBPATH}
+ ${OPENJPEG_LIBPATH})
if(WITH_OPENCOLORIO)
link_directories(${OPENCOLORIO_LIBPATH})
@@ -94,6 +95,7 @@ macro(cycles_target_link_libraries target)
${target}
${OPENIMAGEIO_LIBRARIES}
${OPENEXR_LIBRARIES}
+ ${OPENJPEG_LIBRARIES}
${PUGIXML_LIBRARIES}
${BOOST_LIBRARIES}
${CMAKE_DL_LIBS}
@@ -151,6 +153,7 @@ if(WITH_CYCLES_CUBIN_COMPILER)
extern_cuew
${OPENIMAGEIO_LIBRARIES}
${OPENEXR_LIBRARIES}
+ ${OPENJPEG_LIBRARIES}
${PUGIXML_LIBRARIES}
${BOOST_LIBRARIES}
${PLATFORM_LINKLIBS}