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

CMakeLists.txt « subd « cycles « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dafb807bdf3b190e1c8878acf1443943e112c5e4 (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
27
28
29
30
31
32

set(INC
	.
	../graph
	../kernel
	../kernel/svm
	../render
	../util
)

set(INC_SYS

)

set(SRC
	subd_dice.cpp
	subd_patch.cpp
	subd_split.cpp
	subd_patch_table.cpp
)

set(SRC_HEADERS
	subd_dice.h
	subd_patch.h
	subd_patch_table.h
	subd_split.h
)

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

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