Removes Collada import/export (has been deprecated since 4.2). Pull Request: https://projects.blender.org/blender/blender/pulls/139337
36 lines
527 B
CMake
36 lines
527 B
CMake
# SPDX-FileCopyrightText: 2020 Blender Authors
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
add_subdirectory(common)
|
|
add_subdirectory(csv)
|
|
|
|
if(WITH_IO_WAVEFRONT_OBJ)
|
|
add_subdirectory(wavefront_obj)
|
|
endif()
|
|
|
|
if(WITH_IO_PLY)
|
|
add_subdirectory(ply)
|
|
endif()
|
|
|
|
if(WITH_IO_STL)
|
|
add_subdirectory(stl)
|
|
endif()
|
|
|
|
if(WITH_IO_GREASE_PENCIL)
|
|
add_subdirectory(grease_pencil)
|
|
endif()
|
|
|
|
if(WITH_IO_FBX)
|
|
add_subdirectory(fbx)
|
|
endif()
|
|
|
|
if(WITH_ALEMBIC)
|
|
add_subdirectory(alembic)
|
|
endif()
|
|
|
|
if(WITH_USD)
|
|
add_subdirectory(usd)
|
|
endif()
|