From 04ccc8cc46c45b81e6138bec0b48a188c4ffe406 Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Sun, 23 Jan 2022 01:33:47 +0100 Subject: Remove experimental platforms Android, Pico, SDL (PR #376) ... as discussed in fltk.coredev: "FLTK 1.4.0 release schedule" https://groups.google.com/g/fltkcoredev/c/PDbHTRpXVh0/m/JqboexZ_AwAJ --- CMake/options.cmake | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'CMake/options.cmake') diff --git a/CMake/options.cmake b/CMake/options.cmake index f1e347fbc..eb8f1fe92 100644 --- a/CMake/options.cmake +++ b/CMake/options.cmake @@ -65,7 +65,6 @@ endif (WIN32) ####################################################################### if (APPLE) option (OPTION_APPLE_X11 "use X11" OFF) - option (OPTION_APPLE_SDL "use SDL" OFF) if (CMAKE_OSX_SYSROOT) list (APPEND FLTK_CFLAGS "-isysroot ${CMAKE_OSX_SYSROOT}") endif (CMAKE_OSX_SYSROOT) @@ -100,14 +99,6 @@ if (OPTION_APPLE_X11) endif (X11_INCLUDE_DIR) endif (OPTION_APPLE_X11) -if (OPTION_APPLE_SDL) - find_package (SDL2 REQUIRED) - if (SDL2_FOUND) - set (USE_SDL 1) - list (APPEND FLTK_LDLIBS SDL2_LIBRARY) - endif (SDL2_FOUND) -endif (OPTION_APPLE_SDL) - ####################################################################### option (OPTION_USE_POLL "use poll if available" OFF) mark_as_advanced (OPTION_USE_POLL) @@ -238,8 +229,6 @@ if (OPTION_USE_GL) set (OPENGL_LIBRARIES -L${PATH_TO_XLIBS} -lGLU -lGL) unset(HAVE_GL_GLU_H CACHE) find_file (HAVE_GL_GLU_H GL/glu.h PATHS ${X11_INCLUDE_DIR}) - elseif (OPTION_APPLE_SDL) - set (OPENGL_FOUND FALSE) else() include (FindOpenGL) if (APPLE) @@ -618,10 +607,6 @@ else () endif (OPTION_USE_KDIALOG) ####################################################################### -####################################################################### -option (OPTION_CREATE_ANDROID_STUDIO_IDE "create files needed to compile FLTK for Android" OFF) -####################################################################### - ####################################################################### option (CMAKE_SUPPRESS_REGENERATION "suppress rules to re-run CMake on rebuild" OFF) mark_as_advanced (CMAKE_SUPPRESS_REGENERATION) -- cgit v1.2.3