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.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/intern/cycles/device/CMakeLists.txt b/intern/cycles/device/CMakeLists.txt
index 712351b9558..55941438720 100644
--- a/intern/cycles/device/CMakeLists.txt
+++ b/intern/cycles/device/CMakeLists.txt
@@ -1,5 +1,5 @@
-INCLUDE_DIRECTORIES(
+include_directories(
.
../kernel
../kernel/svm
@@ -9,7 +9,7 @@ INCLUDE_DIRECTORIES(
${OPENGL_INCLUDE_DIR}
${GLEW_INCLUDE_PATH})
-SET(sources
+set(sources
device.cpp
device_cpu.cpp
device_cuda.cpp
@@ -17,10 +17,10 @@ SET(sources
device_network.cpp
device_opencl.cpp)
-SET(headers
+set(headers
device.h
device_intern.h
device_network.h)
-ADD_LIBRARY(cycles_device ${sources} ${headers})
+add_library(cycles_device ${sources} ${headers})