Files
test/source/blender/io/CMakeLists.txt
Jacques Lucke 1816a2665e Tests: Geometry Nodes: add initial Import CSV node tests
Previously, the test files still had absolute instead of relative paths in them.

Pull Request: https://projects.blender.org/blender/blender/pulls/139020
2025-05-18 07:34:57 +02:00

40 lines
585 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_OPENCOLLADA)
add_subdirectory(collada)
endif()
if(WITH_USD)
add_subdirectory(usd)
endif()