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: c934cded6da5a43e484595801516b579171b51ea (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(bvh ${sources} ${headers})