2014-02-09 22:41:29 +04:00
|
|
|
#
|
|
|
|
# Main CMakeLists.txt to build the FLTK project using CMake (www.cmake.org)
|
2022-03-13 23:52:18 +03:00
|
|
|
# Originally written by Michael Surette
|
2014-02-09 22:41:29 +04:00
|
|
|
#
|
2022-03-13 23:52:18 +03:00
|
|
|
# Copyright 1998-2022 by Bill Spitzak and others.
|
2014-02-09 22:41:29 +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:
|
|
|
|
#
|
2020-02-14 17:23:53 +03:00
|
|
|
# https://www.fltk.org/COPYING.php
|
2014-02-09 22:41:29 +04:00
|
|
|
#
|
2020-07-01 19:03:10 +03:00
|
|
|
# Please see the following page on how to report bugs and issues:
|
2014-02-09 22:41:29 +04:00
|
|
|
#
|
2020-07-01 19:03:10 +03:00
|
|
|
# https://www.fltk.org/bugs.php
|
2014-02-09 22:41:29 +04:00
|
|
|
#
|
|
|
|
|
2018-02-23 22:41:52 +03:00
|
|
|
set (DEBUG_OPTIONS_CMAKE 0)
|
|
|
|
if (DEBUG_OPTIONS_CMAKE)
|
|
|
|
message (STATUS "[** options.cmake **]")
|
|
|
|
fl_debug_var (WIN32)
|
|
|
|
fl_debug_var (FLTK_LDLIBS)
|
|
|
|
endif (DEBUG_OPTIONS_CMAKE)
|
|
|
|
|
2014-02-09 22:41:29 +04:00
|
|
|
#######################################################################
|
|
|
|
# options
|
|
|
|
#######################################################################
|
2020-06-13 16:19:27 +03:00
|
|
|
set (OPTION_OPTIM ""
|
|
|
|
CACHE STRING
|
|
|
|
"custom optimization flags"
|
|
|
|
)
|
|
|
|
add_definitions (${OPTION_OPTIM})
|
2014-02-09 22:41:29 +04:00
|
|
|
|
|
|
|
#######################################################################
|
2020-06-13 16:19:27 +03:00
|
|
|
set (OPTION_ARCHFLAGS ""
|
|
|
|
CACHE STRING
|
|
|
|
"custom architecture flags"
|
2020-08-13 21:32:56 +03:00
|
|
|
)
|
2020-06-13 16:19:27 +03:00
|
|
|
add_definitions (${OPTION_ARCHFLAGS})
|
2014-02-09 22:41:29 +04:00
|
|
|
|
2015-07-12 22:23:55 +03:00
|
|
|
#######################################################################
|
2020-06-13 16:19:27 +03:00
|
|
|
set (OPTION_ABI_VERSION ""
|
|
|
|
CACHE STRING
|
|
|
|
"FLTK ABI Version FL_ABI_VERSION: 1xxyy for 1.x.y (xx,yy with leading zero)"
|
2020-08-13 21:32:56 +03:00
|
|
|
)
|
2020-06-13 16:19:27 +03:00
|
|
|
set (FL_ABI_VERSION ${OPTION_ABI_VERSION})
|
2015-07-12 22:23:55 +03:00
|
|
|
|
2014-02-09 22:41:29 +04:00
|
|
|
#######################################################################
|
|
|
|
#######################################################################
|
2018-02-23 22:41:52 +03:00
|
|
|
if (UNIX)
|
2020-06-13 16:19:27 +03:00
|
|
|
option (OPTION_CREATE_LINKS "create backwards compatibility links" OFF)
|
|
|
|
list (APPEND FLTK_LDLIBS -lm)
|
2022-03-04 17:40:29 +03:00
|
|
|
option (OPTION_USE_WAYLAND "use Wayland" OFF)
|
|
|
|
if (OPTION_USE_WAYLAND)
|
|
|
|
set (FLTK_USE_WAYLAND 1)
|
|
|
|
option (OPTION_USE_SYSTEM_LIBDECOR "use libdecor from the system" OFF)
|
|
|
|
unset (OPTION_USE_XRENDER CACHE)
|
|
|
|
unset (OPTION_USE_XINERAMA CACHE)
|
|
|
|
unset (OPTION_USE_XFT CACHE)
|
|
|
|
unset (OPTION_USE_XCURSOR CACHE)
|
|
|
|
unset (OPTION_USE_XFIXES CACHE)
|
|
|
|
unset (OPTION_USE_PANGO CACHE)
|
|
|
|
set (OPTION_USE_PANGO TRUE CACHE BOOL "use lib Pango")
|
|
|
|
if (OPTION_USE_SYSTEM_LIBDECOR)
|
|
|
|
pkg_check_modules(SYSTEM_LIBDECOR libdecor-0)
|
|
|
|
if (NOT SYSTEM_LIBDECOR_FOUND)
|
|
|
|
set (OPTION_USE_SYSTEM_LIBDECOR OFF)
|
|
|
|
endif (NOT SYSTEM_LIBDECOR_FOUND)
|
|
|
|
endif (OPTION_USE_SYSTEM_LIBDECOR)
|
|
|
|
endif (OPTION_USE_WAYLAND)
|
2018-02-23 22:41:52 +03:00
|
|
|
endif (UNIX)
|
|
|
|
|
2021-02-26 20:00:07 +03:00
|
|
|
if (WIN32)
|
|
|
|
option (OPTION_USE_GDIPLUS "use GDI+ when possible for antialiased graphics" ON)
|
|
|
|
if (OPTION_USE_GDIPLUS)
|
|
|
|
set (USE_GDIPLUS TRUE)
|
|
|
|
if (NOT MSVC)
|
|
|
|
list (APPEND FLTK_LDLIBS "-lgdiplus")
|
|
|
|
endif (NOT MSVC)
|
|
|
|
endif (OPTION_USE_GDIPLUS)
|
|
|
|
endif (WIN32)
|
|
|
|
|
2017-07-18 23:15:02 +03:00
|
|
|
#######################################################################
|
2018-02-25 22:25:45 +03:00
|
|
|
if (APPLE)
|
|
|
|
option (OPTION_APPLE_X11 "use X11" OFF)
|
2020-08-31 13:34:37 +03:00
|
|
|
if (CMAKE_OSX_SYSROOT)
|
|
|
|
list (APPEND FLTK_CFLAGS "-isysroot ${CMAKE_OSX_SYSROOT}")
|
|
|
|
endif (CMAKE_OSX_SYSROOT)
|
2018-02-25 22:25:45 +03:00
|
|
|
endif (APPLE)
|
|
|
|
|
|
|
|
# find X11 libraries and headers
|
|
|
|
set (PATH_TO_XLIBS)
|
2022-03-04 17:40:29 +03:00
|
|
|
if ((NOT APPLE OR OPTION_APPLE_X11) AND NOT WIN32 AND NOT OPTION_USE_WAYLAND)
|
2018-02-25 22:25:45 +03:00
|
|
|
include (FindX11)
|
|
|
|
if (X11_FOUND)
|
2021-12-19 00:42:30 +03:00
|
|
|
set (FLTK_USE_X11 1)
|
2018-02-25 22:25:45 +03:00
|
|
|
list (APPEND FLTK_LDLIBS -lX11)
|
|
|
|
if (X11_Xext_FOUND)
|
|
|
|
list (APPEND FLTK_LDLIBS -lXext)
|
|
|
|
endif (X11_Xext_FOUND)
|
|
|
|
get_filename_component (PATH_TO_XLIBS ${X11_X11_LIB} PATH)
|
|
|
|
endif (X11_FOUND)
|
2022-03-04 17:40:29 +03:00
|
|
|
endif ((NOT APPLE OR OPTION_APPLE_X11) AND NOT WIN32 AND NOT OPTION_USE_WAYLAND)
|
2016-12-06 22:20:34 +03:00
|
|
|
|
2016-12-01 09:31:25 +03:00
|
|
|
if (OPTION_APPLE_X11)
|
2020-08-27 18:49:10 +03:00
|
|
|
if (NOT(${CMAKE_SYSTEM_VERSION} VERSION_LESS 17.0.0)) # a.k.a. macOS version ≥ 10.13
|
2020-08-26 22:37:26 +03:00
|
|
|
list (APPEND FLTK_CFLAGS "-D_LIBCPP_HAS_THREAD_API_PTHREAD")
|
2020-08-27 18:49:10 +03:00
|
|
|
endif (NOT(${CMAKE_SYSTEM_VERSION} VERSION_LESS 17.0.0))
|
2018-02-25 22:25:45 +03:00
|
|
|
include_directories (AFTER SYSTEM /opt/X11/include/freetype2)
|
|
|
|
if (PATH_TO_XLIBS)
|
|
|
|
set (LDFLAGS "-L${PATH_TO_XLIBS} ${LDFLAGS}")
|
|
|
|
endif (PATH_TO_XLIBS)
|
|
|
|
if (X11_INCLUDE_DIR)
|
2020-08-26 22:37:26 +03:00
|
|
|
set (TEMP_INCLUDE_DIR ${X11_INCLUDE_DIR})
|
|
|
|
list (TRANSFORM TEMP_INCLUDE_DIR PREPEND "-I")
|
|
|
|
list (APPEND FLTK_CFLAGS "${TEMP_INCLUDE_DIR}")
|
2018-02-25 22:25:45 +03:00
|
|
|
endif (X11_INCLUDE_DIR)
|
2016-12-01 09:31:25 +03:00
|
|
|
endif (OPTION_APPLE_X11)
|
2014-02-09 22:41:29 +04:00
|
|
|
|
|
|
|
#######################################################################
|
2020-06-13 16:19:27 +03:00
|
|
|
option (OPTION_USE_POLL "use poll if available" OFF)
|
|
|
|
mark_as_advanced (OPTION_USE_POLL)
|
2014-02-09 22:41:29 +04:00
|
|
|
|
2020-06-13 16:19:27 +03:00
|
|
|
if (OPTION_USE_POLL)
|
|
|
|
CHECK_FUNCTION_EXISTS(poll USE_POLL)
|
|
|
|
endif (OPTION_USE_POLL)
|
2014-02-09 22:41:29 +04:00
|
|
|
|
|
|
|
#######################################################################
|
2020-06-13 16:19:27 +03:00
|
|
|
option (OPTION_BUILD_SHARED_LIBS
|
2020-08-13 21:32:56 +03:00
|
|
|
"Build shared libraries (in addition to static libraries)"
|
2020-06-13 16:19:27 +03:00
|
|
|
OFF
|
2020-08-13 21:32:56 +03:00
|
|
|
)
|
2014-02-09 22:41:29 +04:00
|
|
|
|
|
|
|
#######################################################################
|
2020-06-13 16:19:27 +03:00
|
|
|
option (OPTION_PRINT_SUPPORT "allow print support" ON)
|
|
|
|
option (OPTION_FILESYSTEM_SUPPORT "allow file system support" ON)
|
2014-02-09 22:41:29 +04:00
|
|
|
|
2020-08-13 21:32:56 +03:00
|
|
|
option (FLTK_BUILD_TEST "Build test/demo programs" ON)
|
|
|
|
option (FLTK_BUILD_EXAMPLES "Build example programs" OFF)
|
|
|
|
|
|
|
|
if (DEFINED OPTION_BUILD_EXAMPLES)
|
|
|
|
message (WARNING
|
|
|
|
"'OPTION_BUILD_EXAMPLES' is obsolete, please use 'FLTK_BUILD_TEST' instead.")
|
|
|
|
message (STATUS
|
|
|
|
"To remove this warning, please delete 'OPTION_BUILD_EXAMPLES' from the CMake cache")
|
|
|
|
endif (DEFINED OPTION_BUILD_EXAMPLES)
|
|
|
|
|
2015-04-26 00:42:51 +03:00
|
|
|
#######################################################################
|
2020-02-14 17:23:53 +03:00
|
|
|
if (DOXYGEN_FOUND)
|
2020-06-13 16:19:27 +03:00
|
|
|
option (OPTION_BUILD_HTML_DOCUMENTATION "build html docs" ON)
|
|
|
|
option (OPTION_INSTALL_HTML_DOCUMENTATION "install html docs" OFF)
|
2018-12-29 22:04:38 +03:00
|
|
|
|
2020-06-13 16:19:27 +03:00
|
|
|
option (OPTION_INCLUDE_DRIVER_DOCUMENTATION "include driver (developer) docs" OFF)
|
|
|
|
mark_as_advanced (OPTION_INCLUDE_DRIVER_DOCUMENTATION)
|
2018-12-29 22:04:38 +03:00
|
|
|
|
2020-06-13 16:19:27 +03:00
|
|
|
if (LATEX_FOUND)
|
|
|
|
option (OPTION_BUILD_PDF_DOCUMENTATION "build pdf docs" ON)
|
|
|
|
option (OPTION_INSTALL_PDF_DOCUMENTATION "install pdf docs" OFF)
|
|
|
|
endif (LATEX_FOUND)
|
2020-02-14 17:23:53 +03:00
|
|
|
endif (DOXYGEN_FOUND)
|
2015-04-26 00:42:51 +03:00
|
|
|
|
2020-06-13 16:19:27 +03:00
|
|
|
if (OPTION_BUILD_HTML_DOCUMENTATION OR OPTION_BUILD_PDF_DOCUMENTATION)
|
|
|
|
add_subdirectory (documentation)
|
|
|
|
endif (OPTION_BUILD_HTML_DOCUMENTATION OR OPTION_BUILD_PDF_DOCUMENTATION)
|
2015-04-26 00:42:51 +03:00
|
|
|
|
2014-02-09 22:41:29 +04:00
|
|
|
#######################################################################
|
2021-02-28 16:56:19 +03:00
|
|
|
# Include optional Cairo support
|
|
|
|
#######################################################################
|
2014-02-09 22:41:29 +04:00
|
|
|
|
2020-06-13 16:19:27 +03:00
|
|
|
option (OPTION_CAIRO "use lib Cairo" OFF)
|
|
|
|
option (OPTION_CAIROEXT
|
|
|
|
"use FLTK code instrumentation for Cairo extended use" OFF
|
|
|
|
)
|
2014-02-09 22:41:29 +04:00
|
|
|
|
2021-02-28 16:56:19 +03:00
|
|
|
set (FLTK_HAVE_CAIRO 0)
|
2021-12-19 00:42:30 +03:00
|
|
|
set (FLTK_HAVE_CAIROEXT 0)
|
2021-02-28 16:56:19 +03:00
|
|
|
|
|
|
|
if (OPTION_CAIRO OR OPTION_CAIROEXT)
|
2020-06-13 16:19:27 +03:00
|
|
|
pkg_search_module (PKG_CAIRO cairo)
|
2021-02-28 16:56:19 +03:00
|
|
|
|
|
|
|
# fl_debug_var (PKG_CAIRO_FOUND)
|
|
|
|
|
|
|
|
if (PKG_CAIRO_FOUND)
|
|
|
|
set (FLTK_HAVE_CAIRO 1)
|
|
|
|
if (OPTION_CAIROEXT)
|
2021-12-19 00:42:30 +03:00
|
|
|
set (FLTK_HAVE_CAIROEXT 1)
|
2021-02-28 16:56:19 +03:00
|
|
|
endif (OPTION_CAIROEXT)
|
|
|
|
add_subdirectory (cairo)
|
|
|
|
|
2021-04-30 20:47:47 +03:00
|
|
|
if (0)
|
|
|
|
fl_debug_var (PKG_CAIRO_INCLUDE_DIRS)
|
|
|
|
fl_debug_var (PKG_CAIRO_CFLAGS)
|
|
|
|
fl_debug_var (PKG_CAIRO_LIBRARIES)
|
|
|
|
fl_debug_var (PKG_CAIRO_LIBRARY_DIRS)
|
|
|
|
fl_debug_var (PKG_CAIRO_STATIC_INCLUDE_DIRS)
|
|
|
|
fl_debug_var (PKG_CAIRO_STATIC_CFLAGS)
|
|
|
|
fl_debug_var (PKG_CAIRO_STATIC_LIBRARIES)
|
|
|
|
fl_debug_var (PKG_CAIRO_STATIC_LIBRARY_DIRS)
|
|
|
|
endif()
|
2021-02-28 16:56:19 +03:00
|
|
|
|
|
|
|
include_directories (${PKG_CAIRO_INCLUDE_DIRS})
|
|
|
|
|
|
|
|
# Cairo libs and flags for fltk-config
|
|
|
|
|
|
|
|
# Hint: use either PKG_CAIRO_* or PKG_CAIRO_STATIC_* variables to
|
|
|
|
# create the list of libraries used to link programs with cairo
|
|
|
|
# by running fltk-config --use-cairo --compile ...
|
|
|
|
# Currently we're using the non-STATIC variables to link cairo shared.
|
|
|
|
|
|
|
|
set (CAIROLIBS)
|
|
|
|
foreach (lib ${PKG_CAIRO_LIBRARIES})
|
|
|
|
list (APPEND CAIROLIBS "-l${lib}")
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
string (REPLACE ";" " " CAIROLIBS "${CAIROLIBS}")
|
|
|
|
string (REPLACE ";" " " CAIROFLAGS "${PKG_CAIRO_CFLAGS}")
|
|
|
|
|
|
|
|
# fl_debug_var (FLTK_LDLIBS)
|
|
|
|
# fl_debug_var (CAIROFLAGS)
|
|
|
|
# fl_debug_var (CAIROLIBS)
|
|
|
|
|
2020-06-13 16:19:27 +03:00
|
|
|
else ()
|
|
|
|
message (STATUS "*** Cairo was requested but not found - please check your cairo installation")
|
|
|
|
message (STATUS "*** or disable options OPTION_CAIRO and OPTION_CAIRO_EXT.")
|
|
|
|
message (FATAL_ERROR "*** Terminating: missing Cairo libs or headers.")
|
2021-02-28 16:56:19 +03:00
|
|
|
endif (PKG_CAIRO_FOUND)
|
|
|
|
|
|
|
|
endif (OPTION_CAIRO OR OPTION_CAIROEXT)
|
2014-02-09 22:41:29 +04:00
|
|
|
|
2017-09-03 16:14:25 +03:00
|
|
|
#######################################################################
|
2020-06-13 16:19:27 +03:00
|
|
|
option (OPTION_USE_SVG "read/write SVG files" ON)
|
2017-09-03 16:14:25 +03:00
|
|
|
|
2020-06-13 16:19:27 +03:00
|
|
|
if (OPTION_USE_SVG)
|
|
|
|
set (FLTK_USE_SVG 1)
|
|
|
|
endif (OPTION_USE_SVG)
|
2017-09-03 16:14:25 +03:00
|
|
|
|
2014-02-09 22:41:29 +04:00
|
|
|
#######################################################################
|
2020-06-13 16:19:27 +03:00
|
|
|
set (HAVE_GL LIB_GL OR LIB_MesaGL)
|
2014-02-09 22:41:29 +04:00
|
|
|
|
2020-06-13 16:19:27 +03:00
|
|
|
if (HAVE_GL)
|
|
|
|
option (OPTION_USE_GL "use OpenGL" ON)
|
|
|
|
endif (HAVE_GL)
|
2014-02-09 22:41:29 +04:00
|
|
|
|
2020-06-13 16:19:27 +03:00
|
|
|
if (OPTION_USE_GL)
|
|
|
|
if (OPTION_APPLE_X11)
|
|
|
|
set (OPENGL_FOUND TRUE)
|
|
|
|
set (OPENGL_LIBRARIES -L${PATH_TO_XLIBS} -lGLU -lGL)
|
2020-08-31 17:17:04 +03:00
|
|
|
unset(HAVE_GL_GLU_H CACHE)
|
|
|
|
find_file (HAVE_GL_GLU_H GL/glu.h PATHS ${X11_INCLUDE_DIR})
|
2020-06-13 16:19:27 +03:00
|
|
|
else()
|
|
|
|
include (FindOpenGL)
|
|
|
|
if (APPLE)
|
|
|
|
set (HAVE_GL_GLU_H ${HAVE_OPENGL_GLU_H})
|
|
|
|
endif (APPLE)
|
|
|
|
endif (OPTION_APPLE_X11)
|
2018-02-24 16:44:06 +03:00
|
|
|
else ()
|
2020-06-13 16:19:27 +03:00
|
|
|
set (OPENGL_FOUND FALSE)
|
2022-03-23 00:16:03 +03:00
|
|
|
set (HAVE_GL FALSE)
|
|
|
|
set (HAVE_GL_GLU_H FALSE)
|
|
|
|
set (HAVE_GLXGETPROCADDRESSARB FALSE)
|
2020-06-13 16:19:27 +03:00
|
|
|
endif (OPTION_USE_GL)
|
2014-02-09 22:41:29 +04:00
|
|
|
|
2018-02-23 22:41:52 +03:00
|
|
|
if (OPENGL_FOUND)
|
|
|
|
set (CMAKE_REQUIRED_INCLUDES ${OPENGL_INCLUDE_DIR}/GL)
|
2018-02-24 16:44:06 +03:00
|
|
|
|
|
|
|
# Set GLLIBS (used in fltk-config).
|
|
|
|
# We should probably deduct this from OPENGL_LIBRARIES but it turned
|
|
|
|
# out to be difficult since FindOpenGL seems to return different
|
|
|
|
# syntax depending on the platform (and maybe also CMake version).
|
|
|
|
# Hence we use the following code...
|
|
|
|
|
2018-02-23 22:41:52 +03:00
|
|
|
if (WIN32)
|
|
|
|
set (GLLIBS "-lglu32 -lopengl32")
|
2018-02-24 16:44:06 +03:00
|
|
|
elseif (APPLE AND NOT OPTION_APPLE_X11)
|
|
|
|
set (GLLIBS "-framework OpenGL")
|
2022-03-04 17:40:29 +03:00
|
|
|
elseif (OPTION_USE_WAYLAND)
|
|
|
|
set (GLLIBS "-lwayland-egl -lEGL -lGLU -lGL")
|
2018-02-23 22:41:52 +03:00
|
|
|
else ()
|
|
|
|
set (GLLIBS "-lGLU -lGL")
|
2018-02-24 16:44:06 +03:00
|
|
|
endif (WIN32)
|
2015-12-30 17:37:35 +03:00
|
|
|
|
2018-02-23 22:41:52 +03:00
|
|
|
# check if function glXGetProcAddressARB exists
|
|
|
|
set (TEMP_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES})
|
|
|
|
set (CMAKE_REQUIRED_LIBRARIES ${OPENGL_LIBRARIES})
|
|
|
|
CHECK_FUNCTION_EXISTS (glXGetProcAddressARB HAVE_GLXGETPROCADDRESSARB)
|
|
|
|
set (CMAKE_REQUIRED_LIBRARIES ${TEMP_REQUIRED_LIBRARIES})
|
|
|
|
unset (TEMP_REQUIRED_LIBRARIES)
|
2015-12-30 17:37:35 +03:00
|
|
|
|
2018-02-23 22:41:52 +03:00
|
|
|
set (FLTK_GL_FOUND TRUE)
|
|
|
|
else ()
|
|
|
|
set (FLTK_GL_FOUND FALSE)
|
2018-02-24 16:44:06 +03:00
|
|
|
set (GLLIBS)
|
2018-02-23 22:41:52 +03:00
|
|
|
endif (OPENGL_FOUND)
|
2014-02-09 22:41:29 +04:00
|
|
|
|
2018-02-25 22:25:45 +03:00
|
|
|
#######################################################################
|
|
|
|
option (OPTION_LARGE_FILE "enable large file support" ON)
|
|
|
|
|
|
|
|
if (OPTION_LARGE_FILE)
|
|
|
|
if (NOT MSVC)
|
|
|
|
add_definitions (-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64)
|
|
|
|
list (APPEND FLTK_CFLAGS -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64)
|
|
|
|
endif (NOT MSVC)
|
|
|
|
endif (OPTION_LARGE_FILE)
|
|
|
|
|
2014-02-09 22:41:29 +04:00
|
|
|
#######################################################################
|
2016-12-06 22:20:34 +03:00
|
|
|
# Create an option whether we want to check for pthreads.
|
|
|
|
# We must not do it on Windows unless we run under Cygwin, since we
|
|
|
|
# always use native threads on Windows (even if libpthread is available).
|
|
|
|
|
|
|
|
# Note: HAVE_PTHREAD_H has already been determined in resources.cmake
|
|
|
|
# before this file is included (or set to 0 for WIN32).
|
|
|
|
|
|
|
|
if (WIN32 AND NOT CYGWIN)
|
2020-06-13 16:19:27 +03:00
|
|
|
# set (HAVE_PTHREAD_H 0) # (see resources.cmake)
|
|
|
|
set (OPTION_USE_THREADS FALSE)
|
2016-12-06 22:20:34 +03:00
|
|
|
else ()
|
2020-06-13 16:19:27 +03:00
|
|
|
option (OPTION_USE_THREADS "use multi-threading with pthreads" ON)
|
2016-12-06 22:20:34 +03:00
|
|
|
endif (WIN32 AND NOT CYGWIN)
|
|
|
|
|
|
|
|
# initialize more variables
|
2020-06-13 16:19:27 +03:00
|
|
|
set (USE_THREADS 0)
|
|
|
|
set (HAVE_PTHREAD 0)
|
|
|
|
set (FLTK_PTHREADS_FOUND FALSE)
|
2016-12-06 22:20:34 +03:00
|
|
|
|
|
|
|
if (OPTION_USE_THREADS)
|
|
|
|
|
2020-06-13 16:19:27 +03:00
|
|
|
include (FindThreads)
|
2016-12-06 22:20:34 +03:00
|
|
|
|
|
|
|
if (CMAKE_HAVE_THREADS_LIBRARY)
|
2020-06-13 16:19:27 +03:00
|
|
|
add_definitions ("-D_THREAD_SAFE -D_REENTRANT")
|
|
|
|
set (USE_THREADS 1)
|
|
|
|
set (FLTK_THREADS_FOUND TRUE)
|
2016-12-06 22:20:34 +03:00
|
|
|
endif (CMAKE_HAVE_THREADS_LIBRARY)
|
|
|
|
|
|
|
|
if (CMAKE_USE_PTHREADS_INIT AND NOT WIN32)
|
2020-06-13 16:19:27 +03:00
|
|
|
set (HAVE_PTHREAD 1)
|
2016-12-06 22:20:34 +03:00
|
|
|
if (NOT APPLE)
|
2020-06-13 16:19:27 +03:00
|
|
|
set (CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -pthread")
|
2016-12-06 22:20:34 +03:00
|
|
|
endif (NOT APPLE)
|
2020-06-13 16:19:27 +03:00
|
|
|
list (APPEND FLTK_LDLIBS -lpthread)
|
|
|
|
list (APPEND FLTK_CFLAGS -D_THREAD_SAFE -D_REENTRANT)
|
|
|
|
set (FLTK_PTHREADS_FOUND TRUE)
|
2016-12-06 22:20:34 +03:00
|
|
|
else()
|
2020-06-13 16:19:27 +03:00
|
|
|
set (HAVE_PTHREAD 0)
|
|
|
|
set (HAVE_PTHREAD_H 0)
|
|
|
|
set (FLTK_PTHREADS_FOUND FALSE)
|
|
|
|
endif (CMAKE_USE_PTHREADS_INIT AND NOT WIN32)
|
2016-12-06 22:20:34 +03:00
|
|
|
|
|
|
|
else (OPTION_USE_THREADS)
|
|
|
|
|
2020-06-13 16:19:27 +03:00
|
|
|
set (HAVE_PTHREAD_H 0)
|
2016-12-06 22:20:34 +03:00
|
|
|
|
|
|
|
endif (OPTION_USE_THREADS)
|
|
|
|
|
2018-02-09 23:51:15 +03:00
|
|
|
set (debug_threads 0) # set to 1 to show debug info
|
2016-12-06 22:20:34 +03:00
|
|
|
if (debug_threads)
|
|
|
|
message ("")
|
2018-02-09 23:51:15 +03:00
|
|
|
message (STATUS "options.cmake: set debug_threads to 0 to disable the following info:")
|
|
|
|
fl_debug_var(OPTION_USE_THREADS)
|
|
|
|
fl_debug_var(HAVE_PTHREAD)
|
|
|
|
fl_debug_var(HAVE_PTHREAD_H)
|
|
|
|
fl_debug_var(FLTK_THREADS_FOUND)
|
|
|
|
fl_debug_var(CMAKE_EXE_LINKER_FLAGS)
|
|
|
|
message (STATUS "options.cmake: end of debug_threads info.")
|
2016-12-06 22:20:34 +03:00
|
|
|
endif (debug_threads)
|
2018-02-09 23:51:15 +03:00
|
|
|
unset (debug_threads)
|
2014-02-09 22:41:29 +04:00
|
|
|
|
|
|
|
#######################################################################
|
2021-04-30 20:47:47 +03:00
|
|
|
# Image Library Options
|
|
|
|
#######################################################################
|
|
|
|
|
|
|
|
option (OPTION_USE_SYSTEM_ZLIB "use system zlib" ON)
|
|
|
|
|
|
|
|
if (APPLE)
|
|
|
|
option (OPTION_USE_SYSTEM_LIBJPEG "use system libjpeg" OFF)
|
|
|
|
option (OPTION_USE_SYSTEM_LIBPNG "use system libpng" OFF)
|
|
|
|
else ()
|
|
|
|
option (OPTION_USE_SYSTEM_LIBJPEG "use system libjpeg" ON)
|
|
|
|
option (OPTION_USE_SYSTEM_LIBPNG "use system libpng" ON)
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# Image Library : ZLIB
|
|
|
|
#######################################################################
|
2014-02-09 22:41:29 +04:00
|
|
|
|
2018-02-23 22:41:52 +03:00
|
|
|
if (OPTION_USE_SYSTEM_ZLIB)
|
2021-04-30 20:47:47 +03:00
|
|
|
find_package (ZLIB)
|
|
|
|
endif ()
|
2014-02-09 22:41:29 +04:00
|
|
|
|
2021-04-30 20:47:47 +03:00
|
|
|
if (OPTION_USE_SYSTEM_ZLIB AND ZLIB_FOUND)
|
|
|
|
set (FLTK_USE_BUILTIN_ZLIB FALSE)
|
2018-02-23 22:41:52 +03:00
|
|
|
set (FLTK_ZLIB_LIBRARIES ${ZLIB_LIBRARIES})
|
|
|
|
include_directories (${ZLIB_INCLUDE_DIRS})
|
2014-02-09 22:41:29 +04:00
|
|
|
else()
|
2018-02-23 22:41:52 +03:00
|
|
|
if (OPTION_USE_SYSTEM_ZLIB)
|
2020-08-13 21:32:56 +03:00
|
|
|
message (STATUS "cannot find system zlib library - using built-in\n")
|
2021-04-30 20:47:47 +03:00
|
|
|
endif ()
|
2014-02-09 22:41:29 +04:00
|
|
|
|
2018-02-23 22:41:52 +03:00
|
|
|
add_subdirectory (zlib)
|
2021-04-30 20:47:47 +03:00
|
|
|
set (FLTK_USE_BUILTIN_ZLIB TRUE)
|
2018-02-23 22:41:52 +03:00
|
|
|
set (FLTK_ZLIB_LIBRARIES fltk_z)
|
|
|
|
set (ZLIB_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/zlib)
|
|
|
|
include_directories (${CMAKE_CURRENT_SOURCE_DIR}/zlib)
|
2021-04-30 20:47:47 +03:00
|
|
|
endif ()
|
2014-02-09 22:41:29 +04:00
|
|
|
|
2018-02-23 22:41:52 +03:00
|
|
|
set (HAVE_LIBZ 1)
|
2014-02-09 22:41:29 +04:00
|
|
|
|
2014-09-27 04:41:06 +04:00
|
|
|
#######################################################################
|
|
|
|
|
2018-02-23 22:41:52 +03:00
|
|
|
if (OPTION_USE_SYSTEM_LIBJPEG)
|
2021-04-30 20:47:47 +03:00
|
|
|
find_package (JPEG)
|
|
|
|
endif ()
|
2014-09-27 04:41:06 +04:00
|
|
|
|
2021-04-30 20:47:47 +03:00
|
|
|
if (OPTION_USE_SYSTEM_LIBJPEG AND JPEG_FOUND)
|
|
|
|
set (FLTK_USE_BUILTIN_JPEG FALSE)
|
2020-06-13 16:19:27 +03:00
|
|
|
set (FLTK_JPEG_LIBRARIES ${JPEG_LIBRARIES})
|
|
|
|
include_directories (${JPEG_INCLUDE_DIR})
|
2018-02-23 22:41:52 +03:00
|
|
|
else ()
|
|
|
|
if (OPTION_USE_SYSTEM_LIBJPEG)
|
2020-08-13 21:32:56 +03:00
|
|
|
message (STATUS "cannot find system jpeg library - using built-in\n")
|
2021-04-30 20:47:47 +03:00
|
|
|
endif ()
|
2014-09-27 04:41:06 +04:00
|
|
|
|
2018-02-23 22:41:52 +03:00
|
|
|
add_subdirectory (jpeg)
|
2021-04-30 20:47:47 +03:00
|
|
|
set (FLTK_USE_BUILTIN_JPEG TRUE)
|
2018-02-23 22:41:52 +03:00
|
|
|
set (FLTK_JPEG_LIBRARIES fltk_jpeg)
|
|
|
|
include_directories (${CMAKE_CURRENT_SOURCE_DIR}/jpeg)
|
2021-04-30 20:47:47 +03:00
|
|
|
endif ()
|
2014-09-27 04:41:06 +04:00
|
|
|
|
2018-02-23 22:41:52 +03:00
|
|
|
set (HAVE_LIBJPEG 1)
|
2014-09-27 04:41:06 +04:00
|
|
|
|
2014-02-09 22:41:29 +04:00
|
|
|
#######################################################################
|
|
|
|
|
2018-02-23 22:41:52 +03:00
|
|
|
if (OPTION_USE_SYSTEM_LIBPNG)
|
2021-04-30 20:47:47 +03:00
|
|
|
find_package (PNG)
|
|
|
|
endif ()
|
2014-02-09 22:41:29 +04:00
|
|
|
|
2021-04-30 20:47:47 +03:00
|
|
|
if (OPTION_USE_SYSTEM_LIBPNG AND PNG_FOUND)
|
2022-04-04 00:34:09 +03:00
|
|
|
|
2021-04-30 20:47:47 +03:00
|
|
|
set (FLTK_USE_BUILTIN_PNG FALSE)
|
2018-02-23 22:41:52 +03:00
|
|
|
set (FLTK_PNG_LIBRARIES ${PNG_LIBRARIES})
|
2022-04-04 00:34:09 +03:00
|
|
|
include_directories (${PNG_INCLUDE_DIRS})
|
2018-02-23 22:41:52 +03:00
|
|
|
add_definitions (${PNG_DEFINITIONS})
|
2022-04-04 00:34:09 +03:00
|
|
|
|
|
|
|
set (_INCLUDE_SAVED ${CMAKE_REQUIRED_INCLUDES})
|
|
|
|
list (APPEND CMAKE_REQUIRED_INCLUDES ${PNG_INCLUDE_DIRS})
|
|
|
|
|
|
|
|
# FIXME - Force search! Maybe use cache to check for option changes?
|
|
|
|
|
|
|
|
unset (HAVE_PNG_H CACHE)
|
|
|
|
unset (HAVE_LIBPNG_PNG_H CACHE)
|
|
|
|
|
|
|
|
check_include_files (png.h HAVE_PNG_H)
|
|
|
|
mark_as_advanced (HAVE_PNG_H)
|
|
|
|
|
|
|
|
if (NOT HAVE_PNG_H)
|
|
|
|
check_include_files (libpng/png.h HAVE_LIBPNG_PNG_H)
|
|
|
|
mark_as_advanced (HAVE_LIBPNG_PNG_H)
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
set (CMAKE_REQUIRED_INCLUDES ${_INCLUDE_SAVED})
|
|
|
|
unset (_INCLUDE_SAVED)
|
|
|
|
|
|
|
|
else ()
|
|
|
|
|
2018-02-23 22:41:52 +03:00
|
|
|
if (OPTION_USE_SYSTEM_LIBPNG)
|
2020-08-13 21:32:56 +03:00
|
|
|
message (STATUS "cannot find system png library - using built-in\n")
|
2021-04-30 20:47:47 +03:00
|
|
|
endif ()
|
2014-02-09 22:41:29 +04:00
|
|
|
|
2018-02-23 22:41:52 +03:00
|
|
|
add_subdirectory (png)
|
2021-04-30 20:47:47 +03:00
|
|
|
set (FLTK_USE_BUILTIN_PNG TRUE)
|
2018-02-23 22:41:52 +03:00
|
|
|
set (FLTK_PNG_LIBRARIES fltk_png)
|
|
|
|
set (HAVE_PNG_H 1)
|
|
|
|
set (HAVE_PNG_GET_VALID 1)
|
|
|
|
set (HAVE_PNG_SET_TRNS_TO_ALPHA 1)
|
2022-04-04 00:34:09 +03:00
|
|
|
set (HAVE_LIBPNG_PNG_H 0)
|
2018-02-23 22:41:52 +03:00
|
|
|
include_directories (${CMAKE_CURRENT_SOURCE_DIR}/png)
|
2021-04-30 20:47:47 +03:00
|
|
|
endif ()
|
2014-02-09 22:41:29 +04:00
|
|
|
|
|
|
|
#######################################################################
|
2020-06-13 16:19:27 +03:00
|
|
|
if (X11_Xinerama_FOUND)
|
|
|
|
option (OPTION_USE_XINERAMA "use lib Xinerama" ON)
|
|
|
|
endif (X11_Xinerama_FOUND)
|
2014-02-09 22:41:29 +04:00
|
|
|
|
2020-06-13 16:19:27 +03:00
|
|
|
if (OPTION_USE_XINERAMA)
|
|
|
|
set (HAVE_XINERAMA ${X11_Xinerama_FOUND})
|
|
|
|
include_directories (${X11_Xinerama_INCLUDE_PATH})
|
|
|
|
list (APPEND FLTK_LDLIBS -lXinerama)
|
|
|
|
set (FLTK_XINERAMA_FOUND TRUE)
|
2014-02-09 22:41:29 +04:00
|
|
|
else()
|
2020-06-13 16:19:27 +03:00
|
|
|
set (FLTK_XINERAMA_FOUND FALSE)
|
|
|
|
endif (OPTION_USE_XINERAMA)
|
2014-02-09 22:41:29 +04:00
|
|
|
|
|
|
|
#######################################################################
|
2020-06-13 16:19:27 +03:00
|
|
|
if (X11_Xfixes_FOUND)
|
|
|
|
option (OPTION_USE_XFIXES "use lib Xfixes" ON)
|
|
|
|
endif (X11_Xfixes_FOUND)
|
2014-02-09 22:41:29 +04:00
|
|
|
|
2020-06-13 16:19:27 +03:00
|
|
|
if (OPTION_USE_XFIXES)
|
|
|
|
set (HAVE_XFIXES ${X11_Xfixes_FOUND})
|
|
|
|
include_directories (${X11_Xfixes_INCLUDE_PATH})
|
|
|
|
list (APPEND FLTK_LDLIBS -lXfixes)
|
|
|
|
set (FLTK_XFIXES_FOUND TRUE)
|
2014-02-09 22:41:29 +04:00
|
|
|
else()
|
2020-06-13 16:19:27 +03:00
|
|
|
set (FLTK_XFIXES_FOUND FALSE)
|
|
|
|
endif (OPTION_USE_XFIXES)
|
2014-02-09 22:41:29 +04:00
|
|
|
|
2014-06-16 15:17:57 +04:00
|
|
|
#######################################################################
|
2020-06-13 16:19:27 +03:00
|
|
|
if (X11_Xcursor_FOUND)
|
|
|
|
option (OPTION_USE_XCURSOR "use lib Xcursor" ON)
|
|
|
|
endif (X11_Xcursor_FOUND)
|
2014-06-16 15:17:57 +04:00
|
|
|
|
2020-06-13 16:19:27 +03:00
|
|
|
if (OPTION_USE_XCURSOR)
|
|
|
|
set (HAVE_XCURSOR ${X11_Xcursor_FOUND})
|
|
|
|
include_directories (${X11_Xcursor_INCLUDE_PATH})
|
|
|
|
list (APPEND FLTK_LDLIBS -lXcursor)
|
|
|
|
set (FLTK_XCURSOR_FOUND TRUE)
|
2014-06-16 15:17:57 +04:00
|
|
|
else()
|
2020-06-13 16:19:27 +03:00
|
|
|
set (FLTK_XCURSOR_FOUND FALSE)
|
|
|
|
endif (OPTION_USE_XCURSOR)
|
2014-06-16 15:17:57 +04:00
|
|
|
|
2014-02-09 22:41:29 +04:00
|
|
|
#######################################################################
|
2020-06-13 16:19:27 +03:00
|
|
|
if (X11_Xft_FOUND)
|
|
|
|
option (OPTION_USE_XFT "use lib Xft" ON)
|
|
|
|
option (OPTION_USE_PANGO "use lib Pango" OFF)
|
|
|
|
endif (X11_Xft_FOUND)
|
2014-02-09 22:41:29 +04:00
|
|
|
|
2018-01-14 22:34:39 +03:00
|
|
|
# test option compatibility: Pango requires Xft
|
2022-03-04 17:40:29 +03:00
|
|
|
if (OPTION_USE_PANGO AND NOT OPTION_USE_WAYLAND)
|
2018-01-14 22:34:39 +03:00
|
|
|
if (NOT X11_Xft_FOUND)
|
2020-06-13 16:19:27 +03:00
|
|
|
message (STATUS "Pango requires Xft but Xft library or headers could not be found.")
|
|
|
|
message (STATUS "Please install Xft development files and try again or disable OPTION_USE_PANGO.")
|
|
|
|
message (FATAL_ERROR "*** Aborting ***")
|
2018-01-14 22:34:39 +03:00
|
|
|
else ()
|
|
|
|
if (NOT OPTION_USE_XFT)
|
2020-06-13 16:19:27 +03:00
|
|
|
message (STATUS "Pango requires Xft but usage of Xft was disabled.")
|
|
|
|
message (STATUS "Please enable OPTION_USE_XFT and try again or disable OPTION_USE_PANGO.")
|
|
|
|
message (FATAL_ERROR "*** Aborting ***")
|
2018-01-14 22:34:39 +03:00
|
|
|
endif (NOT OPTION_USE_XFT)
|
|
|
|
endif (NOT X11_Xft_FOUND)
|
2022-03-04 17:40:29 +03:00
|
|
|
endif (OPTION_USE_PANGO AND NOT OPTION_USE_WAYLAND)
|
2018-01-14 22:34:39 +03:00
|
|
|
|
2016-12-21 18:05:02 +03:00
|
|
|
#######################################################################
|
2022-03-04 17:40:29 +03:00
|
|
|
if ((X11_Xft_FOUND OR OPTION_USE_WAYLAND) AND OPTION_USE_PANGO)
|
2022-03-13 23:52:18 +03:00
|
|
|
pkg_check_modules(CAIRO cairo)
|
2020-04-15 18:06:55 +03:00
|
|
|
pkg_check_modules(PANGOXFT pangoxft)
|
2020-10-28 19:19:05 +03:00
|
|
|
pkg_check_modules(PANGOCAIRO pangocairo)
|
2022-03-13 23:52:18 +03:00
|
|
|
|
2020-10-28 19:19:05 +03:00
|
|
|
if (PANGOXFT_FOUND AND PANGOCAIRO_FOUND AND CAIRO_FOUND)
|
|
|
|
include_directories (${PANGOXFT_INCLUDE_DIRS} ${CAIRO_INCLUDE_DIRS})
|
2022-03-13 23:52:18 +03:00
|
|
|
|
|
|
|
find_library (HAVE_LIB_PANGO pango-1.0 ${CMAKE_LIBRARY_PATH})
|
|
|
|
find_library (HAVE_LIB_PANGOXFT pangoxft-1.0 ${CMAKE_LIBRARY_PATH})
|
|
|
|
find_library (HAVE_LIB_PANGOCAIRO pangocairo-1.0 ${CMAKE_LIBRARY_PATH})
|
|
|
|
find_library (HAVE_LIB_CAIRO cairo ${CMAKE_LIBRARY_PATH})
|
|
|
|
find_library (HAVE_LIB_GOBJECT gobject-2.0 ${CMAKE_LIBRARY_PATH})
|
|
|
|
|
|
|
|
mark_as_advanced (HAVE_LIB_PANGO)
|
|
|
|
mark_as_advanced (HAVE_LIB_PANGOXFT)
|
|
|
|
mark_as_advanced (HAVE_LIB_PANGOCAIRO)
|
|
|
|
mark_as_advanced (HAVE_LIB_CAIRO)
|
|
|
|
mark_as_advanced (HAVE_LIB_GOBJECT)
|
|
|
|
|
2020-06-13 16:19:27 +03:00
|
|
|
set (USE_PANGO TRUE)
|
2022-03-13 23:52:18 +03:00
|
|
|
|
|
|
|
# add required libraries to fltk-config ...
|
|
|
|
list (APPEND FLTK_LDLIBS ${PANGOXFT_LDFLAGS})
|
|
|
|
list (APPEND FLTK_LDLIBS ${PANGOCAIRO_LDFLAGS})
|
|
|
|
list (APPEND FLTK_LDLIBS ${CAIRO_LDFLAGS})
|
|
|
|
|
|
|
|
# *FIXME* Libraries should not be added explicitly if possible
|
|
|
|
if (OPTION_USE_WAYLAND)
|
|
|
|
list (APPEND FLTK_LDLIBS -lgtk-3 -lgdk-3 -lgio-2.0)
|
|
|
|
endif (OPTION_USE_WAYLAND)
|
|
|
|
|
2020-08-26 22:37:26 +03:00
|
|
|
if (APPLE)
|
|
|
|
get_filename_component(PANGO_L_PATH ${HAVE_LIB_PANGO} PATH)
|
2020-08-31 13:34:37 +03:00
|
|
|
set (LDFLAGS "${LDFLAGS} -L${PANGO_L_PATH}")
|
2020-08-26 22:37:26 +03:00
|
|
|
endif (APPLE)
|
2020-07-01 19:03:10 +03:00
|
|
|
|
2022-03-13 23:52:18 +03:00
|
|
|
else (PANGOXFT_FOUND AND PANGOCAIRO_FOUND AND CAIRO_FOUND)
|
|
|
|
|
|
|
|
# this covers Debian, Ubuntu, FreeBSD, NetBSD, Darwin
|
|
|
|
if (APPLE AND OPTION_APPLE_X11)
|
|
|
|
find_file(FINK_PREFIX NAMES /opt/sw /sw)
|
|
|
|
list (APPEND CMAKE_INCLUDE_PATH ${FINK_PREFIX}/include)
|
|
|
|
include_directories (${FINK_PREFIX}/include/cairo)
|
|
|
|
list (APPEND CMAKE_LIBRARY_PATH ${FINK_PREFIX}/lib)
|
|
|
|
endif (APPLE AND OPTION_APPLE_X11)
|
|
|
|
|
|
|
|
find_file(HAVE_PANGO_H pango-1.0/pango/pango.h ${CMAKE_INCLUDE_PATH})
|
|
|
|
find_file(HAVE_PANGOXFT_H pango-1.0/pango/pangoxft.h ${CMAKE_INCLUDE_PATH})
|
|
|
|
|
|
|
|
if (HAVE_PANGO_H AND HAVE_PANGOXFT_H)
|
|
|
|
find_library(HAVE_LIB_PANGO pango-1.0 ${CMAKE_LIBRARY_PATH})
|
|
|
|
find_library(HAVE_LIB_PANGOXFT pangoxft-1.0 ${CMAKE_LIBRARY_PATH})
|
|
|
|
if (APPLE)
|
|
|
|
set (HAVE_LIB_GOBJECT TRUE)
|
|
|
|
else()
|
|
|
|
find_library(HAVE_LIB_GOBJECT gobject-2.0 ${CMAKE_LIBRARY_PATH})
|
|
|
|
endif (APPLE)
|
|
|
|
endif (HAVE_PANGO_H AND HAVE_PANGOXFT_H)
|
|
|
|
|
|
|
|
if (HAVE_LIB_PANGO AND HAVE_LIB_PANGOXFT AND HAVE_LIB_GOBJECT)
|
|
|
|
set (USE_PANGO TRUE)
|
|
|
|
# remove last 3 components of HAVE_PANGO_H and put in PANGO_H_PREFIX
|
|
|
|
get_filename_component(PANGO_H_PREFIX ${HAVE_PANGO_H} PATH)
|
|
|
|
get_filename_component(PANGO_H_PREFIX ${PANGO_H_PREFIX} PATH)
|
|
|
|
get_filename_component(PANGO_H_PREFIX ${PANGO_H_PREFIX} PATH)
|
|
|
|
|
|
|
|
get_filename_component(PANGOLIB_DIR ${HAVE_LIB_PANGO} PATH)
|
|
|
|
# glib.h is usually in ${PANGO_H_PREFIX}/glib-2.0/ ...
|
|
|
|
find_path(GLIB_H_PATH glib.h
|
|
|
|
PATHS ${PANGO_H_PREFIX}/glib-2.0
|
|
|
|
${PANGO_H_PREFIX}/glib/glib-2.0)
|
|
|
|
include_directories (${PANGO_H_PREFIX}/pango-1.0 ${GLIB_H_PATH} ${PANGOLIB_DIR}/glib-2.0/include)
|
|
|
|
|
|
|
|
# *FIXME* Libraries should not be added explicitly if possible
|
|
|
|
list (APPEND FLTK_LDLIBS -lpango-1.0 -lpangoxft-1.0 -lgobject-2.0)
|
|
|
|
|
|
|
|
endif (HAVE_LIB_PANGO AND HAVE_LIB_PANGOXFT AND HAVE_LIB_GOBJECT)
|
|
|
|
endif (PANGOXFT_FOUND AND PANGOCAIRO_FOUND AND CAIRO_FOUND)
|
2016-12-21 18:05:02 +03:00
|
|
|
|
2022-03-04 17:40:29 +03:00
|
|
|
endif ((X11_Xft_FOUND OR OPTION_USE_WAYLAND) AND OPTION_USE_PANGO)
|
|
|
|
|
|
|
|
if (OPTION_USE_WAYLAND AND NOT OPTION_USE_SYSTEM_LIBDECOR)
|
|
|
|
pkg_check_modules(GTK gtk+-3.0)
|
2022-03-13 23:52:18 +03:00
|
|
|
# set (GTK_FOUND 0) # use this to get cairo titlebars rather than GTK
|
2022-03-04 17:40:29 +03:00
|
|
|
if (GTK_FOUND)
|
|
|
|
include_directories (${GTK_INCLUDE_DIRS})
|
|
|
|
endif (GTK_FOUND)
|
|
|
|
endif (OPTION_USE_WAYLAND AND NOT OPTION_USE_SYSTEM_LIBDECOR)
|
2020-06-13 16:19:27 +03:00
|
|
|
|
|
|
|
if (OPTION_USE_XFT)
|
|
|
|
set (USE_XFT X11_Xft_FOUND)
|
|
|
|
list (APPEND FLTK_LDLIBS -lXft)
|
|
|
|
set (FLTK_XFT_FOUND TRUE)
|
|
|
|
if (APPLE AND OPTION_APPLE_X11)
|
|
|
|
find_library(LIB_fontconfig fontconfig "/opt/X11/lib")
|
|
|
|
endif (APPLE AND OPTION_APPLE_X11)
|
2014-02-09 22:41:29 +04:00
|
|
|
else()
|
2020-06-13 16:19:27 +03:00
|
|
|
set (FLTK_XFT_FOUND FALSE)
|
|
|
|
endif (OPTION_USE_XFT)
|
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
if (X11_Xrender_FOUND)
|
|
|
|
option (OPTION_USE_XRENDER "use lib Xrender" ON)
|
|
|
|
endif (X11_Xrender_FOUND)
|
|
|
|
|
|
|
|
if (OPTION_USE_XRENDER)
|
|
|
|
set (HAVE_XRENDER ${X11_Xrender_FOUND})
|
|
|
|
if (HAVE_XRENDER)
|
|
|
|
include_directories (${X11_Xrender_INCLUDE_PATH})
|
|
|
|
list (APPEND FLTK_LDLIBS -lXrender)
|
|
|
|
set (FLTK_XRENDER_FOUND TRUE)
|
|
|
|
else(HAVE_XRENDER)
|
|
|
|
set (FLTK_XRENDER_FOUND FALSE)
|
|
|
|
endif (HAVE_XRENDER)
|
2015-12-30 17:37:35 +03:00
|
|
|
else(OPTION_USE_XRENDER)
|
2020-06-13 16:19:27 +03:00
|
|
|
set (FLTK_XRENDER_FOUND FALSE)
|
|
|
|
endif (OPTION_USE_XRENDER)
|
2015-12-30 17:37:35 +03:00
|
|
|
|
2016-02-05 19:34:42 +03:00
|
|
|
#######################################################################
|
2020-06-13 16:19:27 +03:00
|
|
|
set (FL_NO_PRINT_SUPPORT FALSE)
|
|
|
|
if (X11_FOUND AND NOT OPTION_PRINT_SUPPORT)
|
|
|
|
set (FL_NO_PRINT_SUPPORT TRUE)
|
|
|
|
endif (X11_FOUND AND NOT OPTION_PRINT_SUPPORT)
|
2016-02-05 19:34:42 +03:00
|
|
|
#######################################################################
|
|
|
|
|
2016-02-10 15:22:38 +03:00
|
|
|
#######################################################################
|
2020-06-13 16:19:27 +03:00
|
|
|
set (FL_CFG_NO_FILESYSTEM_SUPPORT TRUE)
|
|
|
|
if (OPTION_FILESYSTEM_SUPPORT)
|
|
|
|
set (FL_CFG_NO_FILESYSTEM_SUPPORT FALSE)
|
|
|
|
endif (OPTION_FILESYSTEM_SUPPORT)
|
2016-02-10 15:22:38 +03:00
|
|
|
#######################################################################
|
|
|
|
|
2021-12-08 11:40:57 +03:00
|
|
|
#######################################################################
|
|
|
|
option (OPTION_USE_KDIALOG "Fl_Native_File_Chooser may run kdialog" ON)
|
|
|
|
if (OPTION_USE_KDIALOG)
|
|
|
|
set (USE_KDIALOG 1)
|
|
|
|
else ()
|
|
|
|
set (USE_KDIALOG 0)
|
|
|
|
endif (OPTION_USE_KDIALOG)
|
|
|
|
#######################################################################
|
2019-01-15 01:27:34 +03:00
|
|
|
|
2015-04-26 01:57:17 +03:00
|
|
|
#######################################################################
|
2020-06-13 16:19:27 +03:00
|
|
|
option (CMAKE_SUPPRESS_REGENERATION "suppress rules to re-run CMake on rebuild" OFF)
|
|
|
|
mark_as_advanced (CMAKE_SUPPRESS_REGENERATION)
|
2018-02-23 22:41:52 +03:00
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# Debugging ...
|
|
|
|
|
|
|
|
if (DEBUG_OPTIONS_CMAKE)
|
2018-02-24 16:44:06 +03:00
|
|
|
message (STATUS "") # empty line
|
2018-02-23 22:41:52 +03:00
|
|
|
fl_debug_var (WIN32)
|
|
|
|
fl_debug_var (LIBS)
|
|
|
|
fl_debug_var (GLLIBS)
|
|
|
|
fl_debug_var (FLTK_LDLIBS)
|
2018-02-24 16:44:06 +03:00
|
|
|
fl_debug_var (OPENGL_FOUND)
|
|
|
|
fl_debug_var (OPENGL_INCLUDE_DIR)
|
|
|
|
fl_debug_var (OPENGL_LIBRARIES)
|
2018-02-25 22:25:45 +03:00
|
|
|
message ("--- X11 ---")
|
|
|
|
fl_debug_var (X11_FOUND)
|
|
|
|
fl_debug_var (X11_INCLUDE_DIR)
|
|
|
|
fl_debug_var (X11_LIBRARIES)
|
|
|
|
fl_debug_var (X11_X11_LIB)
|
|
|
|
fl_debug_var (X11_X11_INCLUDE_PATH)
|
|
|
|
fl_debug_var (X11_Xft_INCLUDE_PATH)
|
|
|
|
fl_debug_var (X11_Xft_LIB)
|
|
|
|
fl_debug_var (X11_Xft_FOUND)
|
|
|
|
fl_debug_var (PATH_TO_XLIBS)
|
2018-02-23 22:41:52 +03:00
|
|
|
message (STATUS "[** end of options.cmake **]")
|
|
|
|
endif (DEBUG_OPTIONS_CMAKE)
|
|
|
|
unset (DEBUG_OPTIONS_CMAKE)
|