1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-06 09:45:33 +00:00

Fix endif conditions in cmake

This commit is contained in:
Alexei Kotov 2024-06-12 12:51:03 +03:00
parent 65a9f78943
commit 5c6fbc332f

View file

@ -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()