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/device/CMakeLists.txt')
-rw-r--r--intern/cycles/device/CMakeLists.txt26
1 files changed, 26 insertions, 0 deletions
diff --git a/intern/cycles/device/CMakeLists.txt b/intern/cycles/device/CMakeLists.txt
new file mode 100644
index 00000000000..55941438720
--- /dev/null
+++ b/intern/cycles/device/CMakeLists.txt
@@ -0,0 +1,26 @@
+
+include_directories(
+ .
+ ../kernel
+ ../kernel/svm
+ ../kernel/osl
+ ../util
+ ../render
+ ${OPENGL_INCLUDE_DIR}
+ ${GLEW_INCLUDE_PATH})
+
+set(sources
+ device.cpp
+ device_cpu.cpp
+ device_cuda.cpp
+ device_multi.cpp
+ device_network.cpp
+ device_opencl.cpp)
+
+set(headers
+ device.h
+ device_intern.h
+ device_network.h)
+
+add_library(cycles_device ${sources} ${headers})
+