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: 9ff1c5b98c68942aa207967c5a12eb34aa1b7e6f (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
  cycles_util
)

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

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