Changeset View
Changeset View
Standalone View
Standalone View
source/blender/modifiers/CMakeLists.txt
| Show First 20 Lines • Show All 94 Lines • ▼ Show 20 Lines | set(SRC | ||||
| intern/MOD_subsurf.c | intern/MOD_subsurf.c | ||||
| intern/MOD_surface.c | intern/MOD_surface.c | ||||
| intern/MOD_surfacedeform.c | intern/MOD_surfacedeform.c | ||||
| intern/MOD_triangulate.c | intern/MOD_triangulate.c | ||||
| intern/MOD_ui_common.c | intern/MOD_ui_common.c | ||||
| intern/MOD_util.c | intern/MOD_util.c | ||||
| intern/MOD_uvproject.c | intern/MOD_uvproject.c | ||||
| intern/MOD_uvwarp.c | intern/MOD_uvwarp.c | ||||
| intern/MOD_voxelmesher.c | |||||
| intern/MOD_warp.c | intern/MOD_warp.c | ||||
| intern/MOD_wave.c | intern/MOD_wave.c | ||||
| intern/MOD_weighted_normal.c | intern/MOD_weighted_normal.c | ||||
| intern/MOD_weightvg_util.c | intern/MOD_weightvg_util.c | ||||
| intern/MOD_weightvgedit.c | intern/MOD_weightvgedit.c | ||||
| intern/MOD_weightvgmix.c | intern/MOD_weightvgmix.c | ||||
| intern/MOD_weightvgproximity.c | intern/MOD_weightvgproximity.c | ||||
| intern/MOD_weld.c | intern/MOD_weld.c | ||||
| ▲ Show 20 Lines • Show All 52 Lines • ▼ Show 20 Lines | if(WITH_BULLET) | ||||
| endif() | endif() | ||||
| add_definitions(-DWITH_BULLET) | add_definitions(-DWITH_BULLET) | ||||
| endif() | endif() | ||||
| if(WITH_INTERNATIONAL) | if(WITH_INTERNATIONAL) | ||||
| add_definitions(-DWITH_INTERNATIONAL) | add_definitions(-DWITH_INTERNATIONAL) | ||||
| endif() | endif() | ||||
| if(WITH_OPENVDB) | |||||
| list(APPEND INC | |||||
| ../../../intern/openvdb | |||||
| ) | |||||
| list(APPEND LIB | |||||
| bf_intern_openvdb | |||||
| ${OPENVDB_LIBRARIES} | |||||
| ) | |||||
| add_definitions(-DWITH_OPENVDB ${OPENVDB_DEFINITIONS}) | |||||
| endif() | |||||
| # To disable adaptive subdivision test in subsurf UI without cycles | # To disable adaptive subdivision test in subsurf UI without cycles | ||||
| if(WITH_CYCLES) | if(WITH_CYCLES) | ||||
| add_definitions(-DWITH_CYCLES) | add_definitions(-DWITH_CYCLES) | ||||
| endif() | endif() | ||||
| if(WITH_GMP) | if(WITH_GMP) | ||||
| add_definitions(-DWITH_GMP) | add_definitions(-DWITH_GMP) | ||||
| endif() | endif() | ||||
| Show All 9 Lines | |||||