blender/intern/cycles/subd/CMakeLists.txt
Ray Molenkamp 36c1122b96 msvc: Use source folder structure for project file.
This patch changes the huge list of projects in visual studio into a nice tree matching the source folder structure. see D2823 for details.

Differential Revision: http://developer.blender.org/D2823
2018-02-03 16:38:27 -07:00

28 lines
314 B
CMake

set(INC
..
)
set(INC_SYS
)
set(SRC
subd_dice.cpp
subd_patch.cpp
subd_split.cpp
subd_patch_table.cpp
)
set(SRC_HEADERS
subd_dice.h
subd_patch.h
subd_patch_table.h
subd_split.h
)
include_directories(${INC})
include_directories(SYSTEM ${INC_SYS})
cycles_add_library(cycles_subd ${SRC} ${SRC_HEADERS})