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: ab72548fc4f92ea41f2bcce288179e961d6f7d38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

INCLUDE_DIRECTORIES(. ../kernel ../kernel/svm ../kernel/osl ../util ../render)

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(device ${sources} ${headers})