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: b35c20b7a3840f22faca5b9fa77afc2650b48818 (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})