blender/intern/cycles/bvh/CMakeLists.txt
Brecht Van Lommel 774584d7e8 Cycles: hook up the CMake build system.
New build instructions for Ubuntu Linux in the wiki:
http://wiki.blender.org/index.php/Dev:2.5/Source/Cycles
2011-04-28 13:47:27 +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})