Changeset View
Changeset View
Standalone View
Standalone View
source/blender/modifiers/CMakeLists.txt
| Show All 21 Lines | |||||
| # Contributor(s): Jacques Beaurain | # Contributor(s): Jacques Beaurain | ||||
| # Ben Batt | # Ben Batt | ||||
| # | # | ||||
| # ***** END GPL LICENSE BLOCK ***** | # ***** END GPL LICENSE BLOCK ***** | ||||
| set(INC | set(INC | ||||
| . | . | ||||
| intern | intern | ||||
| ../alembic | |||||
| ../blenkernel | ../blenkernel | ||||
| ../blenlib | ../blenlib | ||||
| ../blenfont | ../blenfont | ||||
| ../depsgraph | ../depsgraph | ||||
| ../makesdna | ../makesdna | ||||
| ../makesrna | ../makesrna | ||||
| ../bmesh | ../bmesh | ||||
| ../render/extern/include | ../render/extern/include | ||||
| Show All 30 Lines | set(SRC | ||||
| intern/MOD_laplaciansmooth.c | intern/MOD_laplaciansmooth.c | ||||
| intern/MOD_lattice.c | intern/MOD_lattice.c | ||||
| intern/MOD_mask.c | intern/MOD_mask.c | ||||
| intern/MOD_meshcache.c | intern/MOD_meshcache.c | ||||
| intern/MOD_meshcache_mdd.c | intern/MOD_meshcache_mdd.c | ||||
| intern/MOD_meshcache_pc2.c | intern/MOD_meshcache_pc2.c | ||||
| intern/MOD_meshcache_util.c | intern/MOD_meshcache_util.c | ||||
| intern/MOD_meshdeform.c | intern/MOD_meshdeform.c | ||||
| intern/MOD_meshsequencecache.c | |||||
| intern/MOD_mirror.c | intern/MOD_mirror.c | ||||
| intern/MOD_multires.c | intern/MOD_multires.c | ||||
| intern/MOD_none.c | intern/MOD_none.c | ||||
| intern/MOD_normal_edit.c | intern/MOD_normal_edit.c | ||||
| intern/MOD_ocean.c | intern/MOD_ocean.c | ||||
| intern/MOD_particleinstance.c | intern/MOD_particleinstance.c | ||||
| intern/MOD_particlesystem.c | intern/MOD_particlesystem.c | ||||
| intern/MOD_remesh.c | intern/MOD_remesh.c | ||||
| Show All 23 Lines | set(SRC | ||||
| MOD_modifiertypes.h | MOD_modifiertypes.h | ||||
| intern/MOD_boolean_util.h | intern/MOD_boolean_util.h | ||||
| intern/MOD_fluidsim_util.h | intern/MOD_fluidsim_util.h | ||||
| intern/MOD_meshcache_util.h | intern/MOD_meshcache_util.h | ||||
| intern/MOD_util.h | intern/MOD_util.h | ||||
| intern/MOD_weightvg_util.h | intern/MOD_weightvg_util.h | ||||
| ) | ) | ||||
| if(WITH_ALEMBIC) | |||||
| add_definitions(-DWITH_ALEMBIC) | |||||
| endif() | |||||
| if(WITH_MOD_BOOLEAN) | if(WITH_MOD_BOOLEAN) | ||||
| add_definitions(-DWITH_MOD_BOOLEAN) | add_definitions(-DWITH_MOD_BOOLEAN) | ||||
| list(APPEND SRC | list(APPEND SRC | ||||
| intern/MOD_boolean_util.c | intern/MOD_boolean_util.c | ||||
| ) | ) | ||||
| list(APPEND INC | list(APPEND INC | ||||
| ../../../extern/carve | ../../../extern/carve | ||||
| ) | ) | ||||
| Show All 30 Lines | |||||