blender/intern/cycles/subd/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
390 B
CMake

INCLUDE_DIRECTORIES(. ../util ../kernel ../kernel/svm ../render)
SET(sources
subd_build.cpp
subd_dice.cpp
subd_mesh.cpp
subd_patch.cpp
subd_ring.cpp
subd_split.cpp
subd_stencil.cpp)
SET(headers
subd_build.h
subd_dice.h
subd_edge.h
subd_face.h
subd_mesh.h
subd_patch.h
subd_ring.h
subd_split.h
subd_stencil.h
subd_vert.h)
ADD_LIBRARY(cycles_subd ${sources} ${headers})