Changeset View
Changeset View
Standalone View
Standalone View
source/blender/io/alembic/CMakeLists.txt
| Show All 14 Lines | |||||
| # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||||
| # | # | ||||
| # The Original Code is Copyright (C) 2006, Blender Foundation | # The Original Code is Copyright (C) 2006, Blender Foundation | ||||
| # All rights reserved. | # All rights reserved. | ||||
| # ***** END GPL LICENSE BLOCK ***** | # ***** END GPL LICENSE BLOCK ***** | ||||
| set(INC | set(INC | ||||
| . | . | ||||
| ../common | |||||
| ../../blenkernel | ../../blenkernel | ||||
| ../../blenlib | ../../blenlib | ||||
| ../../blenloader | ../../blenloader | ||||
| ../../bmesh | ../../bmesh | ||||
| ../../depsgraph | ../../depsgraph | ||||
| ../../editors/include | ../../editors/include | ||||
| ../../makesdna | ../../makesdna | ||||
| ../../makesrna | ../../makesrna | ||||
| ▲ Show 20 Lines • Show All 57 Lines • ▼ Show 20 Lines | set(SRC | ||||
| intern/abc_writer_object.h | intern/abc_writer_object.h | ||||
| intern/abc_writer_points.h | intern/abc_writer_points.h | ||||
| intern/abc_writer_transform.h | intern/abc_writer_transform.h | ||||
| ) | ) | ||||
| set(LIB | set(LIB | ||||
| bf_blenkernel | bf_blenkernel | ||||
| bf_blenlib | bf_blenlib | ||||
| bf_io_common | |||||
| ${ALEMBIC_LIBRARIES} | ${ALEMBIC_LIBRARIES} | ||||
| ${OPENEXR_LIBRARIES} | ${OPENEXR_LIBRARIES} | ||||
| ) | ) | ||||
| if(WITH_ALEMBIC_HDF5) | if(WITH_ALEMBIC_HDF5) | ||||
| add_definitions(-DWITH_ALEMBIC_HDF5) | add_definitions(-DWITH_ALEMBIC_HDF5) | ||||
| list(APPEND LIB | list(APPEND LIB | ||||
| Show All 9 Lines | |||||