blender/intern/cycles/render/CMakeLists.txt
Brecht Van Lommel 360fcd73fe Cycles:
* add some (disabled) test code for using OpenImageIO in imbuf
* link cycles, openimageio and boost into blender instead of a shared library
* some cmakefile changes to simplify the code and follow conventions better
* this may solve running cycles problems on windows XP, or give a different
  and hopefully more useful error message
2011-08-16 16:15:34 +00:00

63 lines
746 B
CMake

include_directories(
.
../device
../kernel
../kernel/svm
../kernel/osl
../bvh
../util
${GLEW_INCLUDE_PATH})
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(cycles_render ${sources} ${headers})