[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [59681] trunk/blender/intern/cycles/app/ CMakeLists.txt: Cycles / Standalone:

Thomas Dinges blender at dingto.org
Sat Aug 31 04:25:47 CEST 2013


Revision: 59681
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=59681
Author:   dingto
Date:     2013-08-31 02:25:43 +0000 (Sat, 31 Aug 2013)
Log Message:
-----------
Cycles / Standalone:
* Fix some link errors on Windows, still missing png, zlib, jpeg and tiff.

I couldn't yet figure out the correct flags to pass on here, and the 2300 lines huge main CMakeLists file doesn't help with it...

Modified Paths:
--------------
    trunk/blender/intern/cycles/app/CMakeLists.txt

Modified: trunk/blender/intern/cycles/app/CMakeLists.txt
===================================================================
--- trunk/blender/intern/cycles/app/CMakeLists.txt	2013-08-31 02:12:31 UTC (rev 59680)
+++ trunk/blender/intern/cycles/app/CMakeLists.txt	2013-08-31 02:25:43 UTC (rev 59681)
@@ -20,11 +20,16 @@
 	cycles_subd
 	cycles_util
 	${BOOST_LIBRARIES}
+	${OPENEXR_LIBRARIES}
 	${OPENGL_LIBRARIES}
 	${CYCLES_GLEW_LIBRARY}
 	${OPENIMAGEIO_LIBRARIES}
 )
 
+if(WIN32)
+	list(APPEND LIBRARIES ${PTHREADS_LIBRARIES})
+endif()
+
 link_directories(${OPENIMAGEIO_LIBPATH} ${BOOST_LIBPATH})
 
 if(WITH_CYCLES_STANDALONE AND WITH_CYCLES_STANDALONE_GUI)




More information about the Bf-blender-cvs mailing list