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: 79ed73134f245b912cf23bbbbf8f2384d8bd18c3 (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

include_directories(. ../util ../kernel ../kernel/svm ../render)

set(sources
	subd_build.cpp
	subd_dice.cpp
	subd_mesh.cpp
	subd_patch.cpp
	subd_ring.cpp
	subd_split.cpp
	subd_stencil.cpp)

set(headers
	subd_build.h
	subd_dice.h
	subd_edge.h
	subd_face.h
	subd_mesh.h
	subd_patch.h
	subd_ring.h
	subd_split.h
	subd_stencil.h
	subd_vert.h)

add_library(cycles_subd ${sources} ${headers})