forked from bartvdbraak/blender
536d9fec80
- move object_iterators.c --> view3d_iterators. (ED_object.h had to include ED_view3d.h which isn't so nice) - move projection functions from view3d_view.c --> view3d_project.c (view3d_view was becoming a mishmash of utility functions and operators). - some some cmake includes as system-includes.
37 lines
401 B
CMake
37 lines
401 B
CMake
|
|
set(INC
|
|
.
|
|
../kernel
|
|
../kernel/svm
|
|
../render
|
|
../util
|
|
../device
|
|
)
|
|
|
|
set(INC_SYS
|
|
)
|
|
|
|
set(SRC
|
|
bvh.cpp
|
|
bvh_binning.cpp
|
|
bvh_build.cpp
|
|
bvh_node.cpp
|
|
bvh_sort.cpp
|
|
bvh_split.cpp
|
|
)
|
|
|
|
set(SRC_HEADERS
|
|
bvh.h
|
|
bvh_binning.h
|
|
bvh_build.h
|
|
bvh_node.h
|
|
bvh_params.h
|
|
bvh_sort.h
|
|
bvh_split.h
|
|
)
|
|
|
|
include_directories(${INC})
|
|
include_directories(SYSTEM ${INC_SYS})
|
|
|
|
add_library(cycles_bvh ${SRC} ${SRC_HEADERS})
|