* add some (disabled) test code for using OpenImageIO in imbuf
* link cycles, openimageio and boost into blender instead of a shared library
* some cmakefile changes to simplify the code and follow conventions better
* this may solve running cycles problems on windows XP, or give a different
  and hopefully more useful error message
This commit is contained in:
Brecht Van Lommel
2011-08-16 16:15:34 +00:00
parent 18387f3e3f
commit 360fcd73fe
31 changed files with 808 additions and 504 deletions

View File

@@ -1,7 +1,7 @@
INCLUDE_DIRECTORIES(. ../util ../kernel ../kernel/svm ../render)
include_directories(. ../util ../kernel ../kernel/svm ../render)
SET(sources
set(sources
subd_build.cpp
subd_dice.cpp
subd_mesh.cpp
@@ -10,7 +10,7 @@ SET(sources
subd_split.cpp
subd_stencil.cpp)
SET(headers
set(headers
subd_build.h
subd_dice.h
subd_edge.h
@@ -22,5 +22,5 @@ SET(headers
subd_stencil.h
subd_vert.h)
ADD_LIBRARY(cycles_subd ${sources} ${headers})
add_library(cycles_subd ${sources} ${headers})