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: 5357df4fab7234414b51551e0838bc3d9ac4306c (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})