Changeset View
Changeset View
Standalone View
Standalone View
source/blender/modifiers/CMakeLists.txt
| Show First 20 Lines • Show All 103 Lines • ▼ Show 20 Lines | set(SRC | ||||
| MOD_modifiertypes.h | MOD_modifiertypes.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 | ||||
| ) | ) | ||||
| set(LIB | set(LIB | ||||
| bf_blenkernel | |||||
| bf_blenlib | |||||
| ) | ) | ||||
| if(WITH_ALEMBIC) | if(WITH_ALEMBIC) | ||||
| add_definitions(-DWITH_ALEMBIC) | add_definitions(-DWITH_ALEMBIC) | ||||
| list(APPEND INC | list(APPEND INC | ||||
| ../alembic | ../alembic | ||||
| ) | ) | ||||
| list(APPEND LIB | |||||
| bf_alembic | |||||
| ) | |||||
| endif() | endif() | ||||
| if(WITH_MOD_REMESH) | if(WITH_MOD_REMESH) | ||||
| add_definitions(-DWITH_MOD_REMESH) | |||||
| list(APPEND INC | list(APPEND INC | ||||
| ../../../intern/dualcon | ../../../intern/dualcon | ||||
| ) | ) | ||||
| list(APPEND LIB | |||||
| bf_intern_dualcon | |||||
| ) | |||||
| add_definitions(-DWITH_MOD_REMESH) | |||||
| endif() | endif() | ||||
| if(WITH_MOD_FLUID) | if(WITH_MOD_FLUID) | ||||
| add_definitions(-DWITH_MOD_FLUID) | add_definitions(-DWITH_MOD_FLUID) | ||||
| endif() | endif() | ||||
| if(WITH_MOD_OCEANSIM) | if(WITH_MOD_OCEANSIM) | ||||
| add_definitions(-DWITH_OCEANSIM) | add_definitions(-DWITH_OCEANSIM) | ||||
| endif() | endif() | ||||
| if(WITH_BULLET) | if(WITH_BULLET) | ||||
| list(APPEND LIB | |||||
| extern_bullet | |||||
| ) | |||||
| 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() | ||||
| # So we can have special tricks in modifier system. | # So we can have special tricks in modifier system. | ||||
| add_definitions(${GL_DEFINITIONS}) | add_definitions(${GL_DEFINITIONS}) | ||||
| blender_add_lib(bf_modifiers "${SRC}" "${INC}" "${INC_SYS}" "${LIB}") | blender_add_lib(bf_modifiers "${SRC}" "${INC}" "${INC_SYS}" "${LIB}") | ||||