From 5c6fbc332f5f2ebd792b7f0856f53daffe9ce07f Mon Sep 17 00:00:00 2001 From: Alexei Kotov Date: Wed, 12 Jun 2024 12:51:03 +0300 Subject: [PATCH] Fix endif conditions in cmake --- apps/openmw/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/openmw/CMakeLists.txt b/apps/openmw/CMakeLists.txt index c2293c9228..3c5a6423fd 100644 --- a/apps/openmw/CMakeLists.txt +++ b/apps/openmw/CMakeLists.txt @@ -251,7 +251,7 @@ if(APPLE AND BUILD_OPENMW) "LINKER:SHELL:-framework AudioToolbox" "LINKER:SHELL:-framework VideoDecodeAcceleration") endif() -endif(APPLE) +endif() if (BUILD_WITH_CODE_COVERAGE) target_compile_options(openmw-lib PRIVATE --coverage) @@ -264,4 +264,4 @@ endif() if (WIN32 AND BUILD_OPENMW) INSTALL(TARGETS openmw RUNTIME DESTINATION ".") -endif (WIN32) +endif()