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:
authorCampbell Barton <ideasman42@gmail.com>2011-11-09 00:27:37 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-11-09 00:27:37 +0400
commit33814e0093f0d8d5d8dca46dfc3a13a39a256227 (patch)
tree4bc801ca44b0c1d8aa75d829e3482c7eabd7b018 /intern/cycles/bvh
parent76f77514d3ffbb9697154bb5d12a1bee1b57b607 (diff)
edits to cycles cmake files so cmake_consistency_check.py can parse them.
Diffstat (limited to 'intern/cycles/bvh')
-rw-r--r--intern/cycles/bvh/CMakeLists.txt22
1 files changed, 16 insertions, 6 deletions
diff --git a/intern/cycles/bvh/CMakeLists.txt b/intern/cycles/bvh/CMakeLists.txt
index b35c20b7a38..decc576fe51 100644
--- a/intern/cycles/bvh/CMakeLists.txt
+++ b/intern/cycles/bvh/CMakeLists.txt
@@ -1,18 +1,28 @@
-include_directories(. ../kernel ../kernel/svm ../render ../util ../device)
+set(INC
+ .
+ ../kernel
+ ../kernel/svm
+ ../render
+ ../util
+ ../device
+)
-set(sources
+set(SRC
bvh.cpp
bvh_build.cpp
bvh_node.cpp
- bvh_sort.cpp)
+ bvh_sort.cpp
+)
-set(headers
+set(SRC_HEADERS
bvh.h
bvh_build.h
bvh_node.h
bvh_params.h
- bvh_sort.h)
+ bvh_sort.h
+)
-add_library(cycles_bvh ${sources} ${headers})
+include_directories(${INC})
+add_library(cycles_bvh ${SRC} ${SRC_HEADERS})