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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@blender.org>2020-03-06 18:19:35 +0300
committerSybren A. Stüvel <sybren@blender.org>2020-03-06 18:19:45 +0300
commiteb522af4fec58876ac1b0a73ad9bcdae2d82d33f (patch)
tree485c6a1fb23b5be256757375e2157378d3a5c61b /source/blender/io/collada/CMakeLists.txt
parentff60dd8b18ed00902e5bdfd36882072db7af8735 (diff)
Cleanup: move Alembic, AVI, Collada, and USD to `source/blender/io`
This moves the `alembic`, `avi`, `collada`, and `usd` modules into a common `io` directory. This also cleans up some `#include "../../{somedir}/{somefile}.h"` by adding `../../io/{somedir}` to `CMakeLists.txt` and then just using `#include "{somefile}.h"`. No functional changes.
Diffstat (limited to 'source/blender/io/collada/CMakeLists.txt')
-rw-r--r--source/blender/io/collada/CMakeLists.txt147
1 files changed, 147 insertions, 0 deletions
diff --git a/source/blender/io/collada/CMakeLists.txt b/source/blender/io/collada/CMakeLists.txt
new file mode 100644
index 00000000000..8ffce9e3e7e
--- /dev/null
+++ b/source/blender/io/collada/CMakeLists.txt
@@ -0,0 +1,147 @@
+# ***** BEGIN GPL LICENSE BLOCK *****
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software Foundation,
+# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+#
+# The Original Code is Copyright (C) 2006, Blender Foundation
+# All rights reserved.
+# ***** END GPL LICENSE BLOCK *****
+
+remove_strict_flags()
+FIND_FILE(OPENCOLLADA_ANIMATION_CLIP
+ NAMES
+ COLLADAFWAnimationClip.h
+ PATHS
+ ${OPENCOLLADA_INCLUDE_DIRS}
+ NO_DEFAULT_PATH
+)
+
+if(OPENCOLLADA_ANIMATION_CLIP)
+ add_definitions(-DWITH_OPENCOLLADA_ANIMATION_CLIP)
+endif()
+
+set(INC
+ .
+ ../../blenkernel
+ ../../blenlib
+ ../../blentranslation
+ ../../depsgraph
+ ../../editors/include
+ ../../imbuf
+ ../../makesdna
+ ../../makesrna
+ ../../windowmanager
+ ../../../../intern/guardedalloc
+ ../../ikplugin
+ ../../../../intern/iksolver/extern
+ ../../bmesh
+)
+
+set(INC_SYS
+ ${OPENCOLLADA_INCLUDE_DIRS}
+)
+
+set(SRC
+ AnimationClipExporter.cpp
+ AnimationExporter.cpp
+ AnimationImporter.cpp
+ ArmatureExporter.cpp
+ ArmatureImporter.cpp
+ BCAnimationCurve.cpp
+ BCAnimationSampler.cpp
+ BCMath.cpp
+ BCSampleData.cpp
+ BlenderContext.cpp
+ CameraExporter.cpp
+ ControllerExporter.cpp
+ DocumentExporter.cpp
+ DocumentImporter.cpp
+ EffectExporter.cpp
+ ErrorHandler.cpp
+ ExportSettings.cpp
+ ExtraHandler.cpp
+ ExtraTags.cpp
+ GeometryExporter.cpp
+ ImageExporter.cpp
+ ImportSettings.cpp
+ InstanceWriter.cpp
+ LightExporter.cpp
+ MaterialExporter.cpp
+ Materials.cpp
+ MeshImporter.cpp
+ SceneExporter.cpp
+ SkinInfo.cpp
+ TransformReader.cpp
+ TransformWriter.cpp
+ collada.cpp
+ collada_internal.cpp
+ collada_utils.cpp
+
+ AnimationClipExporter.h
+ AnimationExporter.h
+ AnimationImporter.h
+ ArmatureExporter.h
+ ArmatureImporter.h
+ BCAnimationCurve.h
+ BCAnimationSampler.h
+ BCMath.h
+ BCSampleData.h
+ BlenderContext.h
+ BlenderTypes.h
+ CameraExporter.h
+ ControllerExporter.h
+ DocumentExporter.h
+ DocumentImporter.h
+ EffectExporter.h
+ ErrorHandler.h
+ ExportSettings.h
+ ExtraHandler.h
+ ExtraTags.h
+ GeometryExporter.h
+ ImageExporter.h
+ ImportSettings.h
+ InstanceWriter.h
+ LightExporter.h
+ MaterialExporter.h
+ Materials.h
+ MeshImporter.h
+ SceneExporter.h
+ SkinInfo.h
+ TransformReader.h
+ TransformWriter.h
+ collada.h
+ collada_internal.h
+ collada_utils.h
+)
+
+set(LIB
+ ${OPENCOLLADA_LIBRARIES}
+ ${PCRE_LIBRARIES}
+ ${XML2_LIBRARIES}
+)
+
+if(WITH_BUILDINFO)
+ add_definitions(-DWITH_BUILDINFO)
+endif()
+
+if(WITH_INTERNATIONAL)
+ add_definitions(-DWITH_INTERNATIONAL)
+endif()
+
+if(CMAKE_COMPILER_IS_GNUCXX)
+ # COLLADAFWArray.h gives error with gcc 4.5
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fpermissive")
+endif()
+
+blender_add_lib(bf_collada "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")