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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-03-04 02:47:24 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-04 03:02:35 +0300
commita5c984a57d5fef45677876af15bff39632e5f552 (patch)
treeea841610c45199fa9eb5d20d1573b63bcaba00a2 /source
parentd09c5bdc28a17e3c1cdfdd9805c50508894878dc (diff)
Cleanup: cmake indentation
Diffstat (limited to 'source')
-rw-r--r--source/blender/collada/CMakeLists.txt18
-rw-r--r--source/blender/compositor/CMakeLists.txt7
2 files changed, 14 insertions, 11 deletions
diff --git a/source/blender/collada/CMakeLists.txt b/source/blender/collada/CMakeLists.txt
index a88fd05a18f..6f1c6922d63 100644
--- a/source/blender/collada/CMakeLists.txt
+++ b/source/blender/collada/CMakeLists.txt
@@ -20,16 +20,16 @@
remove_strict_flags()
FIND_FILE(OPENCOLLADA_ANIMATION_CLIP
- NAMES
- COLLADAFWAnimationClip.h
- PATHS
- ${OPENCOLLADA_INCLUDE_DIRS}
- NO_DEFAULT_PATH
- )
+ NAMES
+ COLLADAFWAnimationClip.h
+ PATHS
+ ${OPENCOLLADA_INCLUDE_DIRS}
+ NO_DEFAULT_PATH
+)
-IF(OPENCOLLADA_ANIMATION_CLIP)
- add_definitions(-DWITH_OPENCOLLADA_ANIMATION_CLIP)
-ENDIF()
+if(OPENCOLLADA_ANIMATION_CLIP)
+ add_definitions(-DWITH_OPENCOLLADA_ANIMATION_CLIP)
+endif()
set(INC
.
diff --git a/source/blender/compositor/CMakeLists.txt b/source/blender/compositor/CMakeLists.txt
index 8d609d545f8..d524f4a0e1e 100644
--- a/source/blender/compositor/CMakeLists.txt
+++ b/source/blender/compositor/CMakeLists.txt
@@ -552,8 +552,11 @@ list(APPEND INC
${CMAKE_CURRENT_BINARY_DIR}/operations
)
-data_to_c(${CMAKE_CURRENT_SOURCE_DIR}/operations/COM_OpenCLKernels.cl
- ${CMAKE_CURRENT_BINARY_DIR}/operations/COM_OpenCLKernels.cl.h SRC)
+data_to_c(
+ ${CMAKE_CURRENT_SOURCE_DIR}/operations/COM_OpenCLKernels.cl
+ ${CMAKE_CURRENT_BINARY_DIR}/operations/COM_OpenCLKernels.cl.h
+ SRC
+)
add_definitions(-DCL_USE_DEPRECATED_OPENCL_1_1_APIS)