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@gmail.com>2016-05-07 20:47:37 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2016-05-22 18:29:24 +0300
commitec51175f1fd6c91d53b0d24daccfd5cc9bddf59d (patch)
tree1ad5b06b2318998cc4f03d78a8e7b1ce38e7cbf3 /intern/cycles/graph/CMakeLists.txt
parent841d008b98de5d0fa106ff3fa4731be63fc29f9a (diff)
Code refactor: add generic Cycles node infrastructure.
Differential Revision: https://developer.blender.org/D2016
Diffstat (limited to 'intern/cycles/graph/CMakeLists.txt')
-rw-r--r--intern/cycles/graph/CMakeLists.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/intern/cycles/graph/CMakeLists.txt b/intern/cycles/graph/CMakeLists.txt
new file mode 100644
index 00000000000..401bdb47392
--- /dev/null
+++ b/intern/cycles/graph/CMakeLists.txt
@@ -0,0 +1,22 @@
+
+set(INC
+ .
+ ../util
+)
+
+set(SRC
+ node.cpp
+ node_type.cpp
+)
+
+set(SRC_HEADERS
+ node.h
+ node_enum.h
+ node_type.h
+)
+
+include_directories(${INC})
+include_directories(SYSTEM ${INC_SYS})
+
+add_library(cycles_graph ${SRC} ${SRC_HEADERS})
+