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: f31e9bfbcb2a11ec1e6e91a374b66917be019d8e (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

INCLUDE_DIRECTORIES(. ../device ../kernel ../kernel/svm ../kernel/osl ../bvh ../util)

SET(sources
	attribute.cpp
	background.cpp
	buffers.cpp
	camera.cpp
	film.cpp
	film_response.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
	film_response.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(render ${sources} ${headers})