projects
/
blender.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Cleanup: remove unused arguments
[blender.git]
/
intern
/
cycles
/
graph
/
CMakeLists.txt
1
2
set(INC
3
..
4
)
5
6
set(SRC
7
node.cpp
8
node_type.cpp
9
node_xml.cpp
10
)
11
12
set(SRC_HEADERS
13
node.h
14
node_enum.h
15
node_type.h
16
node_xml.h
17
)
18
19
set(LIB
20
21
)
22
23
include_directories(${INC})
24
include_directories(SYSTEM ${INC_SYS})
25
26
cycles_add_library(cycles_graph "${LIB}" ${SRC} ${SRC_HEADERS})