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

CMakeLists.txt « render « cycles « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 14859aa4414708a474f99b50bc9faf8c55619a9c (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60

include_directories(
	.
	../device
	../kernel
	../kernel/svm
	../kernel/osl
	../bvh
	../util
	${GLEW_INCLUDE_PATH})

set(sources
	attribute.cpp
	background.cpp
	buffers.cpp
	camera.cpp
	film.cpp
	filter.cpp
	graph.cpp
	image.cpp
	integrator.cpp
	light.cpp
	mesh.cpp
	mesh_displace.cpp
	nodes.cpp
	object.cpp
	osl.cpp
	scene.cpp
	session.cpp
	shader.cpp
	sobol.cpp
	svm.cpp
	tile.cpp)

set(headers
	attribute.h
	background.h
	buffers.h
	camera.h
	film.h
	filter.h
	graph.h
	image.h
	integrator.h
	light.h
	mesh.h
	nodes.h
	object.h
	osl.h
	scene.h
	session.h
	shader.h
	sobol.h
	svm.h
	tile.h)

set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${RTTI_DISABLE_FLAGS}")

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