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:
authorCampbell Barton <ideasman42@gmail.com>2019-04-17 07:17:24 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-17 07:21:24 +0300
commite12c08e8d170b7ca40f204a5b0423c23a9fbc2c1 (patch)
tree8cf3453d12edb177a218ef8009357518ec6cab6a /source/blender/collada/CMakeLists.txt
parentb3dabc200a4b0399ec6b81f2ff2730d07b44fcaa (diff)
ClangFormat: apply to source, most of intern
Apply clang format as proposed in T53211. For details on usage and instructions for migrating branches without conflicts, see: https://wiki.blender.org/wiki/Tools/ClangFormat
Diffstat (limited to 'source/blender/collada/CMakeLists.txt')
-rw-r--r--source/blender/collada/CMakeLists.txt170
1 files changed, 85 insertions, 85 deletions
diff --git a/source/blender/collada/CMakeLists.txt b/source/blender/collada/CMakeLists.txt
index 7a02068f42d..d104d01af56 100644
--- a/source/blender/collada/CMakeLists.txt
+++ b/source/blender/collada/CMakeLists.txt
@@ -35,110 +35,110 @@ ELSE()
ENDIF()
set(INC
- .
- ../blenkernel
- ../blenlib
- ../blentranslation
- ../depsgraph
- ../editors/include
- ../makesdna
- ../makesrna
- ../windowmanager
- ../imbuf
- ../../../intern/guardedalloc
- ../ikplugin
- ../../../intern/iksolver/extern
- ../bmesh
+ .
+ ../blenkernel
+ ../blenlib
+ ../blentranslation
+ ../depsgraph
+ ../editors/include
+ ../makesdna
+ ../makesrna
+ ../windowmanager
+ ../imbuf
+ ../../../intern/guardedalloc
+ ../ikplugin
+ ../../../intern/iksolver/extern
+ ../bmesh
)
set(INC_SYS
- ${OPENCOLLADA_INCLUDE_DIRS}
+ ${OPENCOLLADA_INCLUDE_DIRS}
)
set(SRC
- AnimationClipExporter.cpp
- AnimationExporter.cpp
- AnimationImporter.cpp
- ArmatureExporter.cpp
- ArmatureImporter.cpp
- BCAnimationCurve.cpp
- BCAnimationSampler.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.cpp
+ AnimationExporter.cpp
+ AnimationImporter.cpp
+ ArmatureExporter.cpp
+ ArmatureImporter.cpp
+ BCAnimationCurve.cpp
+ BCAnimationSampler.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
- BCSampleData.h
- BlenderContext.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
+ AnimationClipExporter.h
+ AnimationExporter.h
+ AnimationImporter.h
+ ArmatureExporter.h
+ ArmatureImporter.h
+ BCAnimationCurve.h
+ BCAnimationSampler.h
+ BCSampleData.h
+ BlenderContext.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
)
if(WITH_BUILDINFO)
- add_definitions(-DWITH_BUILDINFO)
+ add_definitions(-DWITH_BUILDINFO)
endif()
if(WITH_INTERNATIONAL)
- add_definitions(-DWITH_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")
+ # 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}")