cmake_modules/FindSDL2_ttf.cmake
author koda
Sun, 20 Mar 2016 03:08:51 -0400
changeset 11617 b7d5d75469ee
parent 9677 71626318f80e
child 11662 ae6706411b24
permissions -rw-r--r--
Move pixel format conversion from uVideoRec to AVWrapper This has several benefits, being in C-land allows us to better use libav API and avoid mixing memory allocated from Pascal. Also the C code for the conversion loop generated by GCC or Clang is probably more optimized than by Freepascal. Finally it will simplify code in the future if we are going to enable any other pixel format than yuv420p. Change the coefficients to improve color accuracy during conversion.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9677
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
     1
# - Locate SDL2_ttf library
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
     2
# This module defines:
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
     3
#  SDL2_TTF_LIBRARIES, the name of the library to link against
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
     4
#  SDL2_TTF_INCLUDE_DIRS, where to find the headers
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
     5
#  SDL2_TTF_FOUND, if false, do not try to link against
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
     6
#  SDL2_TTF_VERSION_STRING - human-readable string containing the version of SDL2_ttf
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
     7
#
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
     8
# For backward compatiblity the following variables are also set:
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
     9
#  SDL2TTF_LIBRARY (same value as SDL2_TTF_LIBRARIES)
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    10
#  SDL2TTF_INCLUDE_DIR (same value as SDL2_TTF_INCLUDE_DIRS)
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    11
#  SDL2TTF_FOUND (same value as SDL2_TTF_FOUND)
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    12
#
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    13
# $SDL2DIR is an environment variable that would
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    14
# correspond to the ./configure --prefix=$SDL2DIR
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    15
# used in building SDL2.
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    16
#
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    17
# Created by Eric Wing. This was influenced by the FindSDL2.cmake
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    18
# module, but with modifications to recognize OS X frameworks and
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    19
# additional Unix paths (FreeBSD, etc).
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    20
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    21
#=============================================================================
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    22
# Copyright 2005-2009 Kitware, Inc.
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    23
# Copyright 2012 Benjamin Eikel
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    24
#
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    25
# Distributed under the OSI-approved BSD License (the "License");
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    26
# see accompanying file Copyright.txt for details.
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    27
#
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    28
# This software is distributed WITHOUT ANY WARRANTY; without even the
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    29
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    30
# See the License for more information.
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    31
#=============================================================================
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    32
# (To distribute this file outside of CMake, substitute the full
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    33
#  License text for the above reference.)
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    34
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    35
if(NOT SDL2_TTF_INCLUDE_DIR AND SDL2TTF_INCLUDE_DIR)
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    36
  set(SDL2_TTF_INCLUDE_DIR ${SDL2TTF_INCLUDE_DIR} CACHE PATH "directory cache
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    37
entry initialized from old variable name")
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    38
endif()
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    39
find_path(SDL2_TTF_INCLUDE_DIR SDL_ttf.h
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    40
  HINTS
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    41
    ENV SDL2TTFDIR
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    42
    ENV SDL2DIR
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    43
  PATH_SUFFIXES include/SDL2 include
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    44
)
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    45
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    46
if(NOT SDL2_TTF_LIBRARY AND SDL2TTF_LIBRARY)
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    47
  set(SDL2_TTF_LIBRARY ${SDL2TTF_LIBRARY} CACHE FILEPATH "file cache entry
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    48
initialized from old variable name")
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    49
endif()
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    50
find_library(SDL2_TTF_LIBRARY
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    51
  NAMES SDL2_ttf
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    52
  HINTS
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    53
    ENV SDL2TTFDIR
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    54
    ENV SDL2DIR
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    55
  PATH_SUFFIXES lib
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    56
)
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    57
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    58
if(SDL2_TTF_INCLUDE_DIR AND EXISTS "${SDL2_TTF_INCLUDE_DIR}/SDL2_ttf.h")
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    59
  file(STRINGS "${SDL2_TTF_INCLUDE_DIR}/SDL2_ttf.h" SDL2_TTF_VERSION_MAJOR_LINE REGEX "^#define[ \t]+SDL2_TTF_MAJOR_VERSION[ \t]+[0-9]+$")
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    60
  file(STRINGS "${SDL2_TTF_INCLUDE_DIR}/SDL2_ttf.h" SDL2_TTF_VERSION_MINOR_LINE REGEX "^#define[ \t]+SDL2_TTF_MINOR_VERSION[ \t]+[0-9]+$")
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    61
  file(STRINGS "${SDL2_TTF_INCLUDE_DIR}/SDL2_ttf.h" SDL2_TTF_VERSION_PATCH_LINE REGEX "^#define[ \t]+SDL2_TTF_PATCHLEVEL[ \t]+[0-9]+$")
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    62
  string(REGEX REPLACE "^#define[ \t]+SDL2_TTF_MAJOR_VERSION[ \t]+([0-9]+)$" "\\1" SDL2_TTF_VERSION_MAJOR "${SDL2_TTF_VERSION_MAJOR_LINE}")
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    63
  string(REGEX REPLACE "^#define[ \t]+SDL2_TTF_MINOR_VERSION[ \t]+([0-9]+)$" "\\1" SDL2_TTF_VERSION_MINOR "${SDL2_TTF_VERSION_MINOR_LINE}")
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    64
  string(REGEX REPLACE "^#define[ \t]+SDL2_TTF_PATCHLEVEL[ \t]+([0-9]+)$" "\\1" SDL2_TTF_VERSION_PATCH "${SDL2_TTF_VERSION_PATCH_LINE}")
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    65
  set(SDL2_TTF_VERSION_STRING ${SDL2_TTF_VERSION_MAJOR}.${SDL2_TTF_VERSION_MINOR}.${SDL2_TTF_VERSION_PATCH})
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    66
  unset(SDL2_TTF_VERSION_MAJOR_LINE)
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    67
  unset(SDL2_TTF_VERSION_MINOR_LINE)
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    68
  unset(SDL2_TTF_VERSION_PATCH_LINE)
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    69
  unset(SDL2_TTF_VERSION_MAJOR)
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    70
  unset(SDL2_TTF_VERSION_MINOR)
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    71
  unset(SDL2_TTF_VERSION_PATCH)
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    72
endif()
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    73
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    74
set(SDL2_TTF_LIBRARIES ${SDL2_TTF_LIBRARY})
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    75
set(SDL2_TTF_INCLUDE_DIRS ${SDL2_TTF_INCLUDE_DIR})
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    76
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    77
include(FindPackageHandleStandardArgs)
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    78
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    79
FIND_PACKAGE_HANDLE_STANDARD_ARGS(SDL2_ttf
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    80
                                  REQUIRED_VARS SDL2_TTF_LIBRARIES SDL2_TTF_INCLUDE_DIRS
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    81
                                  VERSION_VAR SDL2_TTF_VERSION_STRING)
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    82
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    83
# for backward compatiblity
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    84
set(SDL2TTF_LIBRARY ${SDL2_TTF_LIBRARIES})
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    85
set(SDL2TTF_INCLUDE_DIR ${SDL2_TTF_INCLUDE_DIRS})
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    86
set(SDL2TTF_FOUND ${SDL2_TTF_FOUND})
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    87
71626318f80e - Use USESDL12 for old SDL
unc0rr
parents:
diff changeset
    88
mark_as_advanced(SDL2_TTF_LIBRARY SDL2_TTF_INCLUDE_DIR)