Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt « graph « cycles « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bd2b2728a29a978981191a9abcecb4c1021a3cc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

set(INC
	..
)

set(SRC
	node.cpp
	node_type.cpp
	node_xml.cpp
)

set(SRC_HEADERS
	node.h
	node_enum.h
	node_type.h
	node_xml.h
)

set(LIB

)

include_directories(${INC})
include_directories(SYSTEM ${INC_SYS})

cycles_add_library(cycles_graph "${LIB}" ${SRC} ${SRC_HEADERS})