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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'intern/cycles/bvh/CMakeLists.txt')
-rw-r--r--intern/cycles/bvh/CMakeLists.txt28
1 files changed, 28 insertions, 0 deletions
diff --git a/intern/cycles/bvh/CMakeLists.txt b/intern/cycles/bvh/CMakeLists.txt
new file mode 100644
index 00000000000..decc576fe51
--- /dev/null
+++ b/intern/cycles/bvh/CMakeLists.txt
@@ -0,0 +1,28 @@
+
+set(INC
+ .
+ ../kernel
+ ../kernel/svm
+ ../render
+ ../util
+ ../device
+)
+
+set(SRC
+ bvh.cpp
+ bvh_build.cpp
+ bvh_node.cpp
+ bvh_sort.cpp
+)
+
+set(SRC_HEADERS
+ bvh.h
+ bvh_build.h
+ bvh_node.h
+ bvh_params.h
+ bvh_sort.h
+)
+
+include_directories(${INC})
+
+add_library(cycles_bvh ${SRC} ${SRC_HEADERS})