From 26cb8f35dbed2aee08aae0f5a811c4eac9cd6634 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Tue, 11 Oct 2022 13:16:42 +0200 Subject: [PATCH] cmake: fix typo in cache variable The name with the typo isn't referenced anywhere in the repo, while the correct spelling is used everywhere except the declaration. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e145300e8..e0f8e7ee1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -256,7 +256,7 @@ if(MAGNUM_TARGET_EGL AND NOT CORRADE_TARGET_WINDOWS) else() # TODO when CMake 3.22 can be relied on, clean this up to use a proper # condition instead - cmake_dependent_option(MAGNUM_WITH_WINDWLESSEGLAPPLICATION "Build WindowlessEglApplication library" OFF "ON" OFF) + cmake_dependent_option(MAGNUM_WITH_WINDOWLESSEGLAPPLICATION "Build WindowlessEglApplication library" OFF "ON" OFF) endif() option(MAGNUM_WITH_EGLCONTEXT "Build EglContext library" OFF)