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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2011-08-16 20:15:34 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2011-08-16 20:15:34 +0400
commit360fcd73fe2868ba32c65697e21ed1bbab8b649a (patch)
tree29c77024343a26c0358b814e581efaf388a3030a /intern/cycles/bvh/CMakeLists.txt
parent18387f3e3fc4e3fbb9f2cd27d49d12e56975e87c (diff)
Cycles:
* add some (disabled) test code for using OpenImageIO in imbuf * link cycles, openimageio and boost into blender instead of a shared library * some cmakefile changes to simplify the code and follow conventions better * this may solve running cycles problems on windows XP, or give a different and hopefully more useful error message
Diffstat (limited to 'intern/cycles/bvh/CMakeLists.txt')
-rw-r--r--intern/cycles/bvh/CMakeLists.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/intern/cycles/bvh/CMakeLists.txt b/intern/cycles/bvh/CMakeLists.txt
index 9ea3bc77461..b35c20b7a38 100644
--- a/intern/cycles/bvh/CMakeLists.txt
+++ b/intern/cycles/bvh/CMakeLists.txt
@@ -1,18 +1,18 @@
-INCLUDE_DIRECTORIES(. ../kernel ../kernel/svm ../render ../util ../device)
+include_directories(. ../kernel ../kernel/svm ../render ../util ../device)
-SET(sources
+set(sources
bvh.cpp
bvh_build.cpp
bvh_node.cpp
bvh_sort.cpp)
-SET(headers
+set(headers
bvh.h
bvh_build.h
bvh_node.h
bvh_params.h
bvh_sort.h)
-ADD_LIBRARY(cycles_bvh ${sources} ${headers})
+add_library(cycles_bvh ${sources} ${headers})