Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt « io « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b5f2694c2dadbbdbb93d6c6b6ad773a137182e53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright 2020 Blender Foundation. All rights reserved.

add_subdirectory(common)
add_subdirectory(wavefront_obj)

if(WITH_ALEMBIC)
  add_subdirectory(alembic)
endif()

if(WITH_CODEC_AVI)
  add_subdirectory(avi)
endif()

if(WITH_OPENCOLLADA)
  add_subdirectory(collada)
endif()

if(WITH_USD)
  add_subdirectory(usd)
endif()

add_subdirectory(gpencil)