blender/intern/cycles/device/CMakeLists.txt
Brecht Van Lommel 774584d7e8 Cycles: hook up the CMake build system.
New build instructions for Ubuntu Linux in the wiki:
http://wiki.blender.org/index.php/Dev:2.5/Source/Cycles
2011-04-28 13:47:27 +00:00

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})