forked from bartvdbraak/blender
360fcd73fe
* 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
27 lines
390 B
CMake
27 lines
390 B
CMake
|
|
include_directories(. ../util ../kernel ../kernel/svm ../render)
|
|
|
|
set(sources
|
|
subd_build.cpp
|
|
subd_dice.cpp
|
|
subd_mesh.cpp
|
|
subd_patch.cpp
|
|
subd_ring.cpp
|
|
subd_split.cpp
|
|
subd_stencil.cpp)
|
|
|
|
set(headers
|
|
subd_build.h
|
|
subd_dice.h
|
|
subd_edge.h
|
|
subd_face.h
|
|
subd_mesh.h
|
|
subd_patch.h
|
|
subd_ring.h
|
|
subd_split.h
|
|
subd_stencil.h
|
|
subd_vert.h)
|
|
|
|
add_library(cycles_subd ${sources} ${headers})
|
|
|