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
19 lines
262 B
CMake
19 lines
262 B
CMake
|
|
include_directories(. ../kernel ../kernel/svm ../render ../util ../device)
|
|
|
|
set(sources
|
|
bvh.cpp
|
|
bvh_build.cpp
|
|
bvh_node.cpp
|
|
bvh_sort.cpp)
|
|
|
|
set(headers
|
|
bvh.h
|
|
bvh_build.h
|
|
bvh_node.h
|
|
bvh_params.h
|
|
bvh_sort.h)
|
|
|
|
add_library(cycles_bvh ${sources} ${headers})
|
|
|