Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt « bvh « cycles « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9ea3bc77461d13ab4eb6c593149e0430348acdcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

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