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 <campbell@blender.org>2022-08-09 06:36:45 +0300
committerCampbell Barton <campbell@blender.org>2022-08-09 06:37:29 +0300
commitdfbba7c0ebfb84eb5ddb86f6eb98b45c11a83436 (patch)
tree9b9f03127711ed7dde6e70389d1a2a4a3a6323f7 /build_files/build_environment
parent19b5524d1c0c1c2ee78a8a75b8703b7cc72a8671 (diff)
Cleanup: CMake file indentation
Diffstat (limited to 'build_files/build_environment')
-rw-r--r--build_files/build_environment/cmake/harvest.cmake6
1 files changed, 4 insertions, 2 deletions
diff --git a/build_files/build_environment/cmake/harvest.cmake b/build_files/build_environment/cmake/harvest.cmake
index bc456858d2a..7ebad7a3da2 100644
--- a/build_files/build_environment/cmake/harvest.cmake
+++ b/build_files/build_environment/cmake/harvest.cmake
@@ -43,7 +43,8 @@ function(harvest from to)
install(
FILES ${LIBDIR}/${from}
DESTINATION ${HARVEST_TARGET}/${dirpath}
- RENAME ${filename})
+ RENAME ${filename}
+ )
else()
install(
DIRECTORY ${LIBDIR}/${from}/
@@ -53,7 +54,8 @@ function(harvest from to)
PATTERN "pkgconfig" EXCLUDE
PATTERN "cmake" EXCLUDE
PATTERN "__pycache__" EXCLUDE
- PATTERN "tests" EXCLUDE)
+ PATTERN "tests" EXCLUDE
+ )
endif()
endfunction()