Changeset View
Changeset View
Standalone View
Standalone View
source/blenderplayer/CMakeLists.txt
| Show First 20 Lines • Show All 225 Lines • ▼ Show 20 Lines | # if(UNIX) | ||||
| if(WITH_OPENSUBDIV) | if(WITH_OPENSUBDIV) | ||||
| list(APPEND BLENDER_SORTED_LIBS bf_intern_opensubdiv) | list(APPEND BLENDER_SORTED_LIBS bf_intern_opensubdiv) | ||||
| endif() | endif() | ||||
| if(WITH_OPENVDB) | if(WITH_OPENVDB) | ||||
| list(APPEND BLENDER_SORTED_LIBS bf_intern_openvdb) | list(APPEND BLENDER_SORTED_LIBS bf_intern_openvdb) | ||||
| endif() | endif() | ||||
| if(WITH_ALEMBIC) | |||||
| list(APPEND BLENDER_SORTED_LIBS bf_alembic) | |||||
| endif() | |||||
| foreach(SORTLIB ${BLENDER_SORTED_LIBS}) | foreach(SORTLIB ${BLENDER_SORTED_LIBS}) | ||||
| set(REMLIB ${SORTLIB}) | set(REMLIB ${SORTLIB}) | ||||
| foreach(SEARCHLIB ${BLENDER_LINK_LIBS}) | foreach(SEARCHLIB ${BLENDER_LINK_LIBS}) | ||||
| if(${SEARCHLIB} STREQUAL ${SORTLIB}) | if(${SEARCHLIB} STREQUAL ${SORTLIB}) | ||||
| set(REMLIB "") | set(REMLIB "") | ||||
| endif() | endif() | ||||
| endforeach() | endforeach() | ||||
| if(REMLIB) | if(REMLIB) | ||||
| Show All 35 Lines | |||||