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-09-27 01:42:52 +0300
committerBrecht Van Lommel <brecht@blender.org>2022-11-02 16:57:15 +0300
commit8daad7dab5224bb241c81d4b6fe1397d68603824 (patch)
treedabe828568e84613ad425446140f43d7c15098c6 /build_files/build_environment/cmake/options.cmake
parent2bdc9908a9a193a0102825a15c2e32ff4d25d14d (diff)
Cleanup: remove unnecessary argument to else() in CMake
We have moved away from duplicating arguments in else() and endif() commands.
Diffstat (limited to 'build_files/build_environment/cmake/options.cmake')
-rw-r--r--build_files/build_environment/cmake/options.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/build_environment/cmake/options.cmake b/build_files/build_environment/cmake/options.cmake
index 9015ef9ac7c..299b82f6d05 100644
--- a/build_files/build_environment/cmake/options.cmake
+++ b/build_files/build_environment/cmake/options.cmake
@@ -15,7 +15,7 @@ message("BuildMode = ${BUILD_MODE}")
if(BUILD_MODE STREQUAL "Debug")
set(LIBDIR ${CMAKE_CURRENT_BINARY_DIR}/Debug)
-else(BUILD_MODE STREQUAL "Debug")
+else()
set(LIBDIR ${CMAKE_CURRENT_BINARY_DIR}/Release)
endif()