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

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})

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