fltk/CMake/fl_debug_pkg.cmake
Albrecht Schlosser fd5cd80935 Introduce "Modern CMake" in FLTK
This is a big commit and there are too many changes to list them all.
The main changes are:

- rename all CMake build options to 'FLTK_*'
- export library targets with namespace (prefix) 'fltk::'
- standardize shared library target names with suffix '-shared'
- set public build properties on libraries for consumers
- document library names and aliases in README.CMake.txt
- document changes in "Migrating Code from FLTK 1.3 to 1.4"
- partial backwards compatibility for old user projects

Included but not directly related changes:

- fix Windows (Visual Studio) DLL build
- add CMake function fl_debug_target() to show target properties
- don't build test programs if FLTK is a subproject
- internal: reformat CMake code: remove space before '('

Thanks to Matthias and Manolo for their help, testing, and feeback.
2024-02-07 18:37:34 +01:00

70 lines
2.1 KiB
CMake

#
# Macro used by the CMake build system for the Fast Light Tool Kit (FLTK).
#
# Copyright 2022 by Bill Spitzak and others.
#
# 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:
#
# https://www.fltk.org/COPYING.php
#
# Please see the following page on how to report bugs and issues:
#
# https://www.fltk.org/bugs.php
#
#######################################################################
# fl_debug_pkg - a macro to output pkgconfig debugging info
#######################################################################
#
# This macro displays the name and value of some CMake variables
# defined by pkg_check_modules().
#
# Syntax:
#
# fl_debug_pkg(PREFIX NAME)
#
# Example for package "cairo":
#
# pkg_check_modules (CAIRO cairo)
# fl_debug_pkg (CAIRO cairo)
#
# The first command searches for pkg 'cairo' and stores the results
# in CMake variables with prefix 'CAIRO_'.
#
# The second command displays all relevant variables if the package has
# been found, otherwise only 'CAIRO_FOUND' (empty or false).
#
#######################################################################
macro (fl_debug_pkg PREFIX NAME)
message("")
message(STATUS "Results of pkg_check_modules(${PREFIX}, ${NAME}):")
fl_debug_var(${PREFIX}_FOUND)
if(${PREFIX}_FOUND)
fl_debug_var(${PREFIX}_INCLUDE_DIRS)
fl_debug_var(${PREFIX}_CFLAGS)
fl_debug_var(${PREFIX}_LIBRARIES)
fl_debug_var(${PREFIX}_LINK_LIBRARIES)
fl_debug_var(${PREFIX}_LIBRARY_DIRS)
fl_debug_var(${PREFIX}_LDFLAGS)
fl_debug_var(${PREFIX}_LDFLAGS_OTHER)
fl_debug_var(${PREFIX}_CFLAGS_OTHER)
fl_debug_var(${PREFIX}_STATIC_INCLUDE_DIRS)
fl_debug_var(${PREFIX}_STATIC_CFLAGS)
fl_debug_var(${PREFIX}_STATIC_LIBRARIES)
fl_debug_var(${PREFIX}_STATIC_LINK_LIBRARIES)
fl_debug_var(${PREFIX}_STATIC_LIBRARY_DIRS)
fl_debug_var(${PREFIX}_VERSION)
fl_debug_var(${PREFIX}_PREFIX)
fl_debug_var(${PREFIX}_INCLUDEDIR)
fl_debug_var(${PREFIX}_LIBDIR)
endif()
message("")
endmacro (fl_debug_pkg)