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/render/CMakeLists.txt')
-rw-r--r--intern/cycles/render/CMakeLists.txt54
1 files changed, 54 insertions, 0 deletions
diff --git a/intern/cycles/render/CMakeLists.txt b/intern/cycles/render/CMakeLists.txt
new file mode 100644
index 00000000000..f31e9bfbcb2
--- /dev/null
+++ b/intern/cycles/render/CMakeLists.txt
@@ -0,0 +1,54 @@
+
+INCLUDE_DIRECTORIES(. ../device ../kernel ../kernel/svm ../kernel/osl ../bvh ../util)
+
+SET(sources
+ attribute.cpp
+ background.cpp
+ buffers.cpp
+ camera.cpp
+ film.cpp
+ film_response.cpp
+ filter.cpp
+ graph.cpp
+ image.cpp
+ integrator.cpp
+ light.cpp
+ mesh.cpp
+ mesh_displace.cpp
+ nodes.cpp
+ object.cpp
+ osl.cpp
+ scene.cpp
+ session.cpp
+ shader.cpp
+ sobol.cpp
+ svm.cpp
+ tile.cpp)
+
+SET(headers
+ attribute.h
+ background.h
+ buffers.h
+ camera.h
+ film.h
+ film_response.h
+ filter.h
+ graph.h
+ image.h
+ integrator.h
+ light.h
+ mesh.h
+ nodes.h
+ object.h
+ osl.h
+ scene.h
+ session.h
+ shader.h
+ sobol.h
+ svm.h
+ tile.h)
+
+SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${RTTI_DISABLE_FLAGS}")
+
+ADD_LIBRARY(render ${sources} ${headers})
+