blender/intern/cycles/bvh/CMakeLists.txt
Brecht Van Lommel 360fcd73fe Cycles:
* 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
2011-08-16 16:15:34 +00:00

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})