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:
authorAndreas Bergmeier <abergmeier>2020-10-09 10:08:38 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-10-09 10:08:38 +0300
commit2a39b6d4d14e270029d51785617e4ddbad318e84 (patch)
treec9efe8b178159701e6872da8abdc5b39aba3e6c5 /build_files/cmake/macros.cmake
parent774905f7e870b137509e28a396fdb9f29cac8c97 (diff)
Cleanup: spelling
Ref D9138
Diffstat (limited to 'build_files/cmake/macros.cmake')
-rw-r--r--build_files/cmake/macros.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/build_files/cmake/macros.cmake b/build_files/cmake/macros.cmake
index 1e3863ac567..cb4f1608216 100644
--- a/build_files/cmake/macros.cmake
+++ b/build_files/cmake/macros.cmake
@@ -302,14 +302,14 @@ function(blender_add_lib__impl
#
# What this code does it traverses library_deps and extracts information about whether
# library is to provided as general, debug or optimized. This is a little state machine which
- # keeps track of whiuch build type library is to provided for:
+ # keeps track of which build type library is to provided for:
#
# - If "debug" or "optimized" word is found, the next element in the list is expected to be
# a library which will be passed to target_link_libraries() under corresponding build type.
#
# - If there is no "debug" or "optimized" used library is specified for all build types.
#
- # NOTE: If separated libraries for debug and release ar eneeded every library is the list are
+ # NOTE: If separated libraries for debug and release are needed every library is the list are
# to be prefixed explicitly.
#
# Use: "optimized libfoo optimized libbar debug libfoo_d debug libbar_d"