Removes all unused functions in ED_gpencil_legacy.hh Pull Request: https://projects.blender.org/blender/blender/pulls/128597
36 lines
632 B
CMake
36 lines
632 B
CMake
# SPDX-FileCopyrightText: 2020 Blender Authors
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
if(WITH_IO_WAVEFRONT_OBJ OR WITH_IO_PLY OR WITH_IO_STL OR WITH_IO_GREASE_PENCIL OR WITH_ALEMBIC OR WITH_USD)
|
|
add_subdirectory(common)
|
|
endif()
|
|
|
|
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_ALEMBIC)
|
|
add_subdirectory(alembic)
|
|
endif()
|
|
|
|
if(WITH_OPENCOLLADA)
|
|
add_subdirectory(collada)
|
|
endif()
|
|
|
|
if(WITH_USD)
|
|
add_subdirectory(usd)
|
|
endif()
|