From f89da143bd32c5610853d7cf17c6c6bc4645fdc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Mon, 12 Feb 2018 01:00:11 +0100 Subject: [PATCH] CMake: set the option() command to OFF by default. Huh wtf. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 12f5dc665..bbf5f0946 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -147,7 +147,7 @@ endif() # Platform-independent (almost) application libraries if(NOT CORRADE_TARGET_ANDROID) - option(WITH_GLFWAPPLICATION "Build GlfwApplication library") + option(WITH_GLFWAPPLICATION "Build GlfwApplication library" OFF) cmake_dependent_option(WITH_GLUTAPPLICATION "Build GlutApplication library" OFF "NOT TARGET_GLES" OFF) option(WITH_SDL2APPLICATION "Build Sdl2Application library" OFF) endif()