2010-01-16 17:18:18 +03:00
|
|
|
#
|
2004-10-19 00:29:58 +04:00
|
|
|
# Main CMakeLists.txt to build the FLTK project using CMake (www.cmake.org)
|
2021-07-26 18:14:29 +03:00
|
|
|
# Originally written by Michael Surette
|
2010-01-16 17:18:18 +03:00
|
|
|
#
|
2024-02-07 20:30:11 +03:00
|
|
|
# Copyright 1998-2024 by Bill Spitzak and others.
|
2010-01-16 17:18:18 +03:00
|
|
|
#
|
2011-07-19 08:49:30 +04:00
|
|
|
# This library is free software. Distribution and use rights are outlined in
|
|
|
|
# the file "COPYING" which should have been included with this file. If this
|
|
|
|
# file is missing or damaged, see the license at:
|
2010-01-16 17:18:18 +03:00
|
|
|
#
|
2020-07-01 19:03:10 +03:00
|
|
|
# https://www.fltk.org/COPYING.php
|
2010-01-16 17:18:18 +03:00
|
|
|
#
|
2020-07-01 19:03:10 +03:00
|
|
|
# Please see the following page on how to report bugs and issues:
|
2010-01-16 17:18:18 +03:00
|
|
|
#
|
2020-07-01 19:03:10 +03:00
|
|
|
# https://www.fltk.org/bugs.php
|
2010-01-16 17:18:18 +03:00
|
|
|
#
|
2004-10-19 00:29:58 +04:00
|
|
|
|
2020-06-13 16:19:27 +03:00
|
|
|
#######################################################################
|
2024-02-07 20:30:11 +03:00
|
|
|
# Set CMake minimum version first: must be set before `project()`
|
2020-06-13 16:19:27 +03:00
|
|
|
#######################################################################
|
|
|
|
|
2023-08-26 19:07:54 +03:00
|
|
|
# Minimum CMake version required by FLTK 1.4
|
|
|
|
|
|
|
|
# Note 1: Linking against OBJECT libraries (fluid, test) requires
|
|
|
|
# at least CMake 3.12.0
|
|
|
|
# Note 2: Used in fluid since 05/2023,
|
|
|
|
# used for Windows (MSVC) shared lib builds much earlier
|
2023-11-15 23:30:12 +03:00
|
|
|
# Note 3: More modern CMake features require 3.13...3.15 (Nov 2023)
|
2023-08-26 19:07:54 +03:00
|
|
|
|
2024-02-07 20:30:11 +03:00
|
|
|
cmake_minimum_required(VERSION 3.15.0 FATAL_ERROR)
|
|
|
|
|
|
|
|
# Since CMake 3.4: enable symbol export from all executable targets
|
|
|
|
# cmake_policy(SET CMP0065 OLD)
|
2020-09-18 19:07:18 +03:00
|
|
|
|
2020-06-13 16:19:27 +03:00
|
|
|
#######################################################################
|
|
|
|
# define the FLTK project and version
|
|
|
|
#######################################################################
|
2014-10-09 20:03:56 +04:00
|
|
|
|
2024-02-07 20:30:11 +03:00
|
|
|
project(FLTK VERSION 1.4.0)
|
2014-09-27 04:41:06 +04:00
|
|
|
|
|
|
|
#######################################################################
|
2021-07-26 18:14:29 +03:00
|
|
|
# include macro and function definitions for general usage
|
2014-09-27 04:41:06 +04:00
|
|
|
#######################################################################
|
2020-06-13 16:19:27 +03:00
|
|
|
|
2024-02-07 20:30:11 +03:00
|
|
|
include(CMake/fl_debug_var.cmake)
|
|
|
|
include(CMake/fl_debug_pkg.cmake)
|
|
|
|
include(CMake/fl_add_library.cmake)
|
2023-11-15 23:30:12 +03:00
|
|
|
|
|
|
|
# right now we don't use compatibility functions
|
2024-02-07 20:30:11 +03:00
|
|
|
# include(CMake/compatibility.cmake)
|
2020-06-13 16:19:27 +03:00
|
|
|
|
2024-02-07 20:30:11 +03:00
|
|
|
if(0)
|
|
|
|
fl_debug_var(FLTK_VERSION_MAJOR)
|
|
|
|
fl_debug_var(FLTK_VERSION_MINOR)
|
|
|
|
fl_debug_var(FLTK_VERSION_PATCH)
|
|
|
|
fl_debug_var(FLTK_VERSION)
|
|
|
|
fl_debug_var(CMAKE_VERSION)
|
|
|
|
endif()
|
2010-04-06 02:33:58 +04:00
|
|
|
|
2024-02-12 18:33:40 +03:00
|
|
|
# Set FLTK_VERSION in the cache so user projects can access it,
|
|
|
|
# for instance if FLTK is built as a subproject (FetchContent)
|
|
|
|
|
|
|
|
set(FLTK_VERSION ${FLTK_VERSION} CACHE STRING "FLTK version" FORCE)
|
|
|
|
|
2010-04-06 02:33:58 +04:00
|
|
|
#######################################################################
|
2014-02-09 22:41:29 +04:00
|
|
|
# basic setup
|
2010-04-06 02:33:58 +04:00
|
|
|
#######################################################################
|
2024-02-07 20:30:11 +03:00
|
|
|
include(CMake/setup.cmake)
|
2010-04-06 02:33:58 +04:00
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# check for headers, libraries and functions
|
|
|
|
#######################################################################
|
2024-02-07 20:30:11 +03:00
|
|
|
include(CMake/resources.cmake)
|
2010-04-06 02:33:58 +04:00
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# options
|
|
|
|
#######################################################################
|
2024-02-07 20:30:11 +03:00
|
|
|
include(CMake/options.cmake)
|
2010-04-06 02:33:58 +04:00
|
|
|
|
2018-02-09 23:51:15 +03:00
|
|
|
#######################################################################
|
|
|
|
# print (debug) several build variables and options
|
|
|
|
#######################################################################
|
|
|
|
|
2024-02-07 20:30:11 +03:00
|
|
|
set(debug_build 0) # set to 1 to show debug info
|
2020-06-13 16:19:27 +03:00
|
|
|
|
2024-02-07 20:30:11 +03:00
|
|
|
if(debug_build)
|
|
|
|
message("")
|
|
|
|
message(STATUS "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt: set 'debug_build' to 0 to disable the following info:")
|
|
|
|
fl_debug_var(WIN32)
|
|
|
|
fl_debug_var(MINGW)
|
|
|
|
fl_debug_var(CYGWIN)
|
|
|
|
fl_debug_var(MSVC)
|
|
|
|
fl_debug_var(UNIX)
|
|
|
|
fl_debug_var(APPLE)
|
|
|
|
fl_debug_var(CMAKE_BUILD_TYPE)
|
|
|
|
fl_debug_var(CMAKE_SIZEOF_VOID_P)
|
|
|
|
fl_debug_var(FLTK_OPTION_OPTIM)
|
|
|
|
fl_debug_var(CMAKE_C_FLAGS)
|
|
|
|
fl_debug_var(CMAKE_CXX_FLAGS)
|
|
|
|
fl_debug_var(CMAKE_EXE_LINKER_FLAGS)
|
|
|
|
message(STATUS "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt: end of debug_build info.")
|
|
|
|
endif(debug_build)
|
2020-06-13 16:19:27 +03:00
|
|
|
|
2024-02-07 20:30:11 +03:00
|
|
|
unset(debug_build)
|
2018-02-09 23:51:15 +03:00
|
|
|
|
2021-11-12 01:11:06 +03:00
|
|
|
#######################################################################
|
2023-03-09 14:21:49 +03:00
|
|
|
# Build a dummy ("empty") Cairo library for backwards compatibility.
|
|
|
|
# This should be removed some time after 1.4.0 was released, maybe
|
|
|
|
# in FLTK 1.4.1, 1.4.2, 1.5.0, or whatever the next minor release is.
|
|
|
|
#######################################################################
|
|
|
|
|
2024-02-07 20:30:11 +03:00
|
|
|
if(FLTK_HAVE_CAIRO)
|
|
|
|
add_subdirectory(cairo)
|
|
|
|
endif()
|
2023-03-09 14:21:49 +03:00
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# build the standard FLTK libraries
|
2021-11-12 01:11:06 +03:00
|
|
|
#######################################################################
|
|
|
|
|
|
|
|
add_subdirectory(src)
|
|
|
|
|
|
|
|
#######################################################################
|
2024-02-12 18:33:40 +03:00
|
|
|
# build fluid (optional)
|
2021-11-12 01:11:06 +03:00
|
|
|
#######################################################################
|
|
|
|
|
2024-02-12 18:33:40 +03:00
|
|
|
set(FLTK_FLUID_EXECUTABLE "")
|
|
|
|
|
2024-02-07 20:30:11 +03:00
|
|
|
if(FLTK_BUILD_FLUID)
|
|
|
|
add_subdirectory(fluid)
|
|
|
|
endif(FLTK_BUILD_FLUID)
|
2021-11-12 01:11:06 +03:00
|
|
|
|
2024-02-12 18:33:40 +03:00
|
|
|
# Set FLTK_FLUID_EXECUTABLE in the cache for user projects.
|
|
|
|
# This can be used if FLTK has been built as a subproject.
|
|
|
|
|
|
|
|
set(FLTK_FLUID_EXECUTABLE
|
|
|
|
"${FLTK_FLUID_EXECUTABLE}" CACHE STRING
|
|
|
|
"FLTK's 'fluid' executable")
|
|
|
|
|
2023-01-21 19:14:41 +03:00
|
|
|
#######################################################################
|
|
|
|
# build fltk-options
|
|
|
|
#######################################################################
|
|
|
|
|
2024-02-07 20:30:11 +03:00
|
|
|
if(FLTK_BUILD_FLTK_OPTIONS)
|
|
|
|
add_subdirectory(fltk-options)
|
|
|
|
endif(FLTK_BUILD_FLTK_OPTIONS)
|
2023-01-21 19:14:41 +03:00
|
|
|
|
2015-04-25 16:50:27 +03:00
|
|
|
#######################################################################
|
|
|
|
# variables shared by export and install
|
|
|
|
# export.cmake creates configuration files for direct use in a built but uninstalled FLTK
|
|
|
|
# install.cmake creates these files for an installed FLTK
|
|
|
|
# these two would only differ in paths, so common variables are set here
|
|
|
|
#######################################################################
|
2023-03-09 14:21:49 +03:00
|
|
|
|
2024-02-07 20:30:11 +03:00
|
|
|
include(CMake/variables.cmake)
|
2015-04-25 16:50:27 +03:00
|
|
|
|
2013-09-11 16:54:40 +04:00
|
|
|
#######################################################################
|
2014-02-09 22:41:29 +04:00
|
|
|
# final config and export
|
2010-04-06 02:33:58 +04:00
|
|
|
#######################################################################
|
2023-03-09 14:21:49 +03:00
|
|
|
|
2024-02-07 20:30:11 +03:00
|
|
|
include(CMake/export.cmake)
|
2010-04-06 02:33:58 +04:00
|
|
|
|
2024-02-07 20:30:11 +03:00
|
|
|
configure_file(
|
2021-12-19 00:42:30 +03:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/fl_config.cmake.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/FL/fl_config.h
|
2020-06-13 16:19:27 +03:00
|
|
|
@ONLY
|
|
|
|
)
|
2015-07-12 22:23:55 +03:00
|
|
|
|
2010-04-06 02:33:58 +04:00
|
|
|
#######################################################################
|
2020-08-13 21:32:56 +03:00
|
|
|
# options to build test/demo and example programs
|
2010-04-06 02:33:58 +04:00
|
|
|
#######################################################################
|
2020-08-13 21:32:56 +03:00
|
|
|
|
2024-02-07 20:30:11 +03:00
|
|
|
if(FLTK_BUILD_TEST)
|
|
|
|
add_subdirectory(test)
|
|
|
|
endif(FLTK_BUILD_TEST)
|
2020-08-13 21:32:56 +03:00
|
|
|
|
2024-02-07 20:30:11 +03:00
|
|
|
if(FLTK_BUILD_EXAMPLES)
|
|
|
|
add_subdirectory(examples)
|
|
|
|
endif(FLTK_BUILD_EXAMPLES)
|
2010-04-06 02:33:58 +04:00
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# installation
|
|
|
|
#######################################################################
|
2023-03-09 14:21:49 +03:00
|
|
|
|
2024-02-07 20:30:11 +03:00
|
|
|
include(CMake/install.cmake)
|
2020-06-13 16:19:27 +03:00
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# Generate Library Export Headers *** EXPERIMENTAL *** WIP ***
|
|
|
|
#######################################################################
|
|
|
|
|
|
|
|
# Enable (1) or disable (0) generation of experimental headers (WIP)
|
2024-02-07 20:30:11 +03:00
|
|
|
set(GENERATE_EXPORT_HEADERS 0)
|
2020-06-13 16:19:27 +03:00
|
|
|
|
2024-02-07 20:30:11 +03:00
|
|
|
if(FLTK_BUILD_SHARED_LIBS AND GENERATE_EXPORT_HEADERS)
|
2020-06-13 16:19:27 +03:00
|
|
|
|
2024-02-07 20:30:11 +03:00
|
|
|
include(GenerateExportHeader)
|
2020-06-13 16:19:27 +03:00
|
|
|
|
2024-02-07 20:30:11 +03:00
|
|
|
generate_export_header(fltk_SHARED
|
2020-06-13 16:19:27 +03:00
|
|
|
BASE_NAME fl
|
|
|
|
EXPORT_FILE_NAME FL/fltk_export.h
|
|
|
|
STATIC_DEFINE FL_STATIC_LIB
|
|
|
|
)
|
|
|
|
|
2024-02-07 20:30:11 +03:00
|
|
|
if(NOT MSVC)
|
2020-06-13 16:19:27 +03:00
|
|
|
|
|
|
|
# Visual Studio builds only one shared lib (DLL)
|
|
|
|
|
2024-02-07 20:30:11 +03:00
|
|
|
generate_export_header(fltk_images_SHARED
|
2020-06-13 16:19:27 +03:00
|
|
|
BASE_NAME fl_images
|
|
|
|
EXPORT_FILE_NAME FL/fltk_images_export.h
|
|
|
|
STATIC_DEFINE FL_STATIC_LIB
|
|
|
|
)
|
|
|
|
|
2024-02-07 20:30:11 +03:00
|
|
|
generate_export_header(fltk_forms_SHARED
|
2020-06-13 16:19:27 +03:00
|
|
|
BASE_NAME fl_forms
|
|
|
|
EXPORT_FILE_NAME FL/fltk_forms_export.h
|
|
|
|
STATIC_DEFINE FL_STATIC_LIB
|
|
|
|
)
|
|
|
|
|
2024-02-07 20:30:11 +03:00
|
|
|
generate_export_header(fltk_gl_SHARED
|
2020-06-13 16:19:27 +03:00
|
|
|
BASE_NAME fl_gl
|
|
|
|
EXPORT_FILE_NAME FL/fltk_gl_export.h
|
|
|
|
STATIC_DEFINE FL_STATIC_LIB
|
|
|
|
)
|
|
|
|
|
2024-02-07 20:30:11 +03:00
|
|
|
endif(NOT MSVC)
|
2020-06-13 16:19:27 +03:00
|
|
|
|
2024-02-07 20:30:11 +03:00
|
|
|
endif(FLTK_BUILD_SHARED_LIBS AND GENERATE_EXPORT_HEADERS)
|
2020-08-18 14:13:41 +03:00
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# Output Configuration Summary
|
|
|
|
#######################################################################
|
|
|
|
|
2024-02-07 20:30:11 +03:00
|
|
|
include(FeatureSummary)
|
|
|
|
|
|
|
|
message("")
|
|
|
|
set(_descr "${PROJECT_NAME} ${FLTK_VERSION} generated by CMake ${CMAKE_VERSION}")
|
|
|
|
feature_summary(WHAT ALL DESCRIPTION "Configuration Summary for ${_descr} --\n")
|
|
|
|
|
|
|
|
message(STATUS "Static libraries will be built in ${CMAKE_CURRENT_BINARY_DIR}/lib")
|
|
|
|
|
|
|
|
if(FLTK_BUILD_SHARED_LIBS)
|
|
|
|
message(STATUS "Shared libraries will be built in ${CMAKE_CURRENT_BINARY_DIR}/lib")
|
|
|
|
else()
|
|
|
|
message(STATUS "Shared libraries will not be built (set FLTK_BUILD_SHARED_LIBS=ON to build)")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(FLTK_BUILD_FORMS)
|
|
|
|
message(STATUS "The forms library will be built in ${CMAKE_CURRENT_BINARY_DIR}/lib")
|
|
|
|
else()
|
|
|
|
message(STATUS "The forms library will not be built (set FLTK_BUILD_FORMS=ON to build)")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(FLTK_USE_GL)
|
|
|
|
message(STATUS "The OpenGL library will be built in ${CMAKE_CURRENT_BINARY_DIR}/lib")
|
|
|
|
else()
|
|
|
|
message(STATUS "The OpenGL library will not be built (set FLTK_BUILD_GL=ON to build)")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(FLTK_BUILD_FLUID)
|
|
|
|
message(STATUS "fluid will be built in ${CMAKE_CURRENT_BINARY_DIR}/bin/fluid")
|
|
|
|
else()
|
|
|
|
message(STATUS "fluid will not be built (set FLTK_BUILD_FLUID=ON to build)")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(FLTK_BUILD_FLTK_OPTIONS)
|
|
|
|
message(STATUS "fltk-options will be built in ${CMAKE_CURRENT_BINARY_DIR}/bin/fltk-options")
|
|
|
|
else()
|
|
|
|
message(STATUS "fltk-options will not be built (set FLTK_BUILD_FLTK_OPTIONS=ON to build)")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(FLTK_BUILD_TEST)
|
|
|
|
message(STATUS "Test programs will be built in ${CMAKE_CURRENT_BINARY_DIR}/bin/test")
|
|
|
|
else()
|
|
|
|
message(STATUS "Test programs will not be built (set FLTK_BUILD_TEST=ON to build)")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(FLTK_BUILD_EXAMPLES)
|
|
|
|
message(STATUS "Example programs will be built in ${CMAKE_CURRENT_BINARY_DIR}/bin/examples")
|
|
|
|
else()
|
|
|
|
message(STATUS "Example programs will not be built (set FLTK_BUILD_EXAMPLES=ON to build)")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
message(STATUS "")
|
|
|
|
|
|
|
|
if(CMAKE_BUILD_TYPE STREQUAL "")
|
|
|
|
message(STATUS "Build configuration : <unspecified>")
|
|
|
|
else()
|
|
|
|
message(STATUS "Build configuration : ${CMAKE_BUILD_TYPE}")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
message(STATUS "")
|
|
|
|
|
|
|
|
if(FLTK_USE_BUNDLED_JPEG)
|
|
|
|
message(STATUS "Image Libraries : JPEG = Builtin")
|
|
|
|
else()
|
|
|
|
message(STATUS "Image Libraries : JPEG = System")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(FLTK_USE_BUNDLED_PNG)
|
|
|
|
message(STATUS " : PNG = Builtin")
|
|
|
|
else()
|
|
|
|
message(STATUS " : PNG = System")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(FLTK_USE_BUNDLED_ZLIB)
|
|
|
|
message(STATUS " : ZLIB = Builtin")
|
|
|
|
else()
|
|
|
|
message(STATUS " : ZLIB = System")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(UNIX AND NOT (APPLE AND NOT FLTK_BACKEND_X11))
|
|
|
|
|
|
|
|
if(FLTK_BACKEND_WAYLAND)
|
|
|
|
message(STATUS "Use Wayland : Yes (if available at run-time)")
|
|
|
|
if(USE_SYSTEM_LIBDECOR)
|
|
|
|
message(STATUS "Use system libdecor : Yes")
|
|
|
|
else()
|
|
|
|
message(STATUS "Use system libdecor : No")
|
|
|
|
endif()
|
|
|
|
else()
|
|
|
|
message(STATUS "Use Wayland : No (therefore, X11 is used)")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(FLTK_USE_CAIRO)
|
|
|
|
message(STATUS "All drawing uses Cairo : Yes")
|
|
|
|
else()
|
|
|
|
message(STATUS "All drawing uses Cairo : No")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(USE_PANGO)
|
|
|
|
message(STATUS "Use Pango : Yes")
|
|
|
|
else()
|
|
|
|
message(STATUS "Use Pango : No")
|
|
|
|
if(USE_XFT)
|
|
|
|
message(STATUS "Use Xft : Yes")
|
|
|
|
else()
|
|
|
|
message(STATUS "Use Xft : No")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(FLTK_HAVE_CAIROEXT)
|
|
|
|
message(STATUS "Fl_Cairo_Window support : Yes (extended)")
|
|
|
|
elseif(FLTK_HAVE_CAIRO)
|
|
|
|
message(STATUS "Fl_Cairo_Window support : Yes (standard)")
|
|
|
|
else()
|
|
|
|
message(STATUS "Fl_Cairo_Window support : No")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(FLTK_USE_STD)
|
|
|
|
message(STATUS "Use std:: : Yes")
|
|
|
|
else()
|
|
|
|
message(STATUS "Use std:: : No")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
message("")
|
|
|
|
message(STATUS "End of Configuration Summary --\n")
|
|
|
|
|
|
|
|
# optional info for "modern CMake"
|
|
|
|
|
|
|
|
if(0) # debug built library and fluid targets
|
|
|
|
message(STATUS "------------------------ TARGETS ------------------------")
|
|
|
|
foreach(tgt fltk fluid fluid-cmd options options-cmd images gl forms cairo jpeg png z)
|
|
|
|
if(TARGET fltk::${tgt})
|
|
|
|
message("Target: fltk::${tgt}")
|
|
|
|
# fl_debug_target(fltk::${tgt})
|
|
|
|
endif()
|
|
|
|
if(TARGET fltk::${tgt}-shared)
|
|
|
|
message("Target: fltk::${tgt}-shared")
|
|
|
|
# fl_debug_target(fltk::${tgt}-shared)
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
message(STATUS "---------------------------------------------------------")
|
|
|
|
endif()
|