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: e70a18137bd069b9941c2556eda2ac8d936e5b3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

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
)

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

add_library(cycles_graph ${SRC} ${SRC_HEADERS})