From ae29e4d0e401d15c77952461aa069034111fa880 Mon Sep 17 00:00:00 2001 From: ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> Date: Sat, 18 Jan 2020 09:14:51 +0100 Subject: [PATCH] Remove temporary CMake option OPTION_HIDPI no longer used. --- CMake/options.cmake | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/CMake/options.cmake b/CMake/options.cmake index 3784314d4..1fa80c672 100644 --- a/CMake/options.cmake +++ b/CMake/options.cmake @@ -70,17 +70,6 @@ if (UNIX) option(OPTION_CREATE_LINKS "create backwards compatibility links" OFF) endif (UNIX) -####################################################################### -## Add a TEMPORARY OPTION to enable high-DPI support under Windows. -## May be removed once high-DPI support under Windows is complete. -####################################################################### -if (WIN32) - option(OPTION_HIDPI "build with experimental high-DPI support" OFF) - if (OPTION_HIDPI) - add_definitions("-DFLTK_HIDPI_SUPPORT") - endif (OPTION_HIDPI) -endif (WIN32) - ####################################################################### if (APPLE) option (OPTION_APPLE_X11 "use X11" OFF)