774584d7e8
New build instructions for Ubuntu Linux in the wiki: http://wiki.blender.org/index.php/Dev:2.5/Source/Cycles
27 lines
357 B
CMake
27 lines
357 B
CMake
|
|
INCLUDE_DIRECTORIES(
|
|
.
|
|
../kernel
|
|
../kernel/svm
|
|
../kernel/osl
|
|
../util
|
|
../render
|
|
${OPENGL_INCLUDE_DIR}
|
|
${GLEW_INCLUDE_DIR})
|
|
|
|
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})
|
|
|