summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2022-01-23 01:33:47 +0100
committerAlbrecht Schlosser <albrechts.fltk@online.de>2022-01-23 18:12:47 +0100
commit04ccc8cc46c45b81e6138bec0b48a188c4ffe406 (patch)
tree3ad8604f5d433dc6b6c294c28549a58dd57efcbd /CMakeLists.txt
parentb275ff07158e80d1744ddb2f6c51094a87cf079a (diff)
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
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt19
1 files changed, 1 insertions, 18 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index f472c4e35..eb4e8ecac 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -81,13 +81,6 @@ include (CMake/resources.cmake)
include (CMake/options.cmake)
#######################################################################
-# Android Studio setup
-#######################################################################
-if (OPTION_CREATE_ANDROID_STUDIO_IDE)
- include (CMake/android.cmake)
-endif (OPTION_CREATE_ANDROID_STUDIO_IDE)
-
-#######################################################################
# print (debug) several build variables and options
#######################################################################
@@ -102,7 +95,6 @@ if (debug_build)
fl_debug_var (MSVC)
fl_debug_var (UNIX)
fl_debug_var (APPLE)
- fl_debug_var (ANDROID)
fl_debug_var (CMAKE_BUILD_TYPE)
fl_debug_var (CMAKE_SIZEOF_VOID_P)
fl_debug_var (OPTION_OPTIM)
@@ -124,9 +116,7 @@ add_subdirectory(src)
# build fluid
#######################################################################
-if (NOT ANDROID)
- add_subdirectory(fluid)
-endif()
+add_subdirectory(fluid)
#######################################################################
# variables shared by export and install
@@ -160,13 +150,6 @@ if (FLTK_BUILD_EXAMPLES)
endif (FLTK_BUILD_EXAMPLES)
#######################################################################
-# Android Studio wrapup
-#######################################################################
-if (OPTION_CREATE_ANDROID_STUDIO_IDE)
- CREATE_ANDROID_IDE_WRAPUP()
-endif (OPTION_CREATE_ANDROID_STUDIO_IDE)
-
-#######################################################################
# installation
#######################################################################
include (CMake/install.cmake)