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

CMakeLists.txt « device « cycles « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 559414387201475e4caef1cdb4301c29033d2186 (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(
	.
	../kernel
	../kernel/svm
	../kernel/osl
	../util
	../render
	${OPENGL_INCLUDE_DIR}
	${GLEW_INCLUDE_PATH})

set(sources
	device.cpp
	device_cpu.cpp
	device_cuda.cpp
	device_multi.cpp
	device_network.cpp
	device_opencl.cpp)

set(headers
	device.h
	device_intern.h
	device_network.h)

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