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.txt18
1 files changed, 18 insertions, 0 deletions
diff --git a/intern/cycles/device/CMakeLists.txt b/intern/cycles/device/CMakeLists.txt
new file mode 100644
index 00000000000..ab72548fc4f
--- /dev/null
+++ b/intern/cycles/device/CMakeLists.txt
@@ -0,0 +1,18 @@
+
+INCLUDE_DIRECTORIES(. ../kernel ../kernel/svm ../kernel/osl ../util ../render)
+
+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(device ${sources} ${headers})
+