author | Wuzzy <Wuzzy2@mail.ru> |
Tue, 07 Jan 2020 15:16:44 +0100 | |
changeset 15538 | c2445fcd1d38 |
parent 12383 | e3d9abcc427a |
permissions | -rw-r--r-- |
9677 | 1 |
# - Locate SDL2_ttf library |
2 |
# This module defines: |
|
3 |
# SDL2_TTF_LIBRARIES, the name of the library to link against |
|
4 |
# SDL2_TTF_INCLUDE_DIRS, where to find the headers |
|
5 |
# SDL2_TTF_FOUND, if false, do not try to link against |
|
6 |
# SDL2_TTF_VERSION_STRING - human-readable string containing the version of SDL2_ttf |
|
7 |
# |
|
8 |
# For backward compatiblity the following variables are also set: |
|
9 |
# SDL2TTF_LIBRARY (same value as SDL2_TTF_LIBRARIES) |
|
10 |
# SDL2TTF_INCLUDE_DIR (same value as SDL2_TTF_INCLUDE_DIRS) |
|
11 |
# SDL2TTF_FOUND (same value as SDL2_TTF_FOUND) |
|
12 |
# |
|
13 |
# $SDL2DIR is an environment variable that would |
|
14 |
# correspond to the ./configure --prefix=$SDL2DIR |
|
15 |
# used in building SDL2. |
|
16 |
# |
|
17 |
# Created by Eric Wing. This was influenced by the FindSDL2.cmake |
|
18 |
# module, but with modifications to recognize OS X frameworks and |
|
19 |
# additional Unix paths (FreeBSD, etc). |
|
20 |
||
21 |
#============================================================================= |
|
22 |
# Copyright 2005-2009 Kitware, Inc. |
|
23 |
# Copyright 2012 Benjamin Eikel |
|
24 |
# |
|
25 |
# Distributed under the OSI-approved BSD License (the "License"); |
|
26 |
# see accompanying file Copyright.txt for details. |
|
27 |
# |
|
28 |
# This software is distributed WITHOUT ANY WARRANTY; without even the |
|
29 |
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
30 |
# See the License for more information. |
|
31 |
#============================================================================= |
|
32 |
# (To distribute this file outside of CMake, substitute the full |
|
33 |
# License text for the above reference.) |
|
34 |
||
35 |
if(NOT SDL2_TTF_INCLUDE_DIR AND SDL2TTF_INCLUDE_DIR) |
|
36 |
set(SDL2_TTF_INCLUDE_DIR ${SDL2TTF_INCLUDE_DIR} CACHE PATH "directory cache |
|
37 |
entry initialized from old variable name") |
|
38 |
endif() |
|
39 |
find_path(SDL2_TTF_INCLUDE_DIR SDL_ttf.h |
|
40 |
HINTS |
|
41 |
ENV SDL2TTFDIR |
|
42 |
ENV SDL2DIR |
|
43 |
PATH_SUFFIXES include/SDL2 include |
|
44 |
) |
|
45 |
||
46 |
if(NOT SDL2_TTF_LIBRARY AND SDL2TTF_LIBRARY) |
|
47 |
set(SDL2_TTF_LIBRARY ${SDL2TTF_LIBRARY} CACHE FILEPATH "file cache entry |
|
48 |
initialized from old variable name") |
|
49 |
endif() |
|
50 |
find_library(SDL2_TTF_LIBRARY |
|
51 |
NAMES SDL2_ttf |
|
52 |
HINTS |
|
53 |
ENV SDL2TTFDIR |
|
54 |
ENV SDL2DIR |
|
55 |
PATH_SUFFIXES lib |
|
56 |
) |
|
57 |
||
12383 | 58 |
if(SDL2_TTF_INCLUDE_DIR AND EXISTS "${SDL2_TTF_INCLUDE_DIR}/SDL_ttf.h") |
59 |
file(STRINGS "${SDL2_TTF_INCLUDE_DIR}/SDL_ttf.h" SDL2_TTF_VERSION_MAJOR_LINE REGEX "^#define[ \t]+SDL_TTF_MAJOR_VERSION[ \t]+[0-9]+$") |
|
60 |
file(STRINGS "${SDL2_TTF_INCLUDE_DIR}/SDL_ttf.h" SDL2_TTF_VERSION_MINOR_LINE REGEX "^#define[ \t]+SDL_TTF_MINOR_VERSION[ \t]+[0-9]+$") |
|
61 |
file(STRINGS "${SDL2_TTF_INCLUDE_DIR}/SDL_ttf.h" SDL2_TTF_VERSION_PATCH_LINE REGEX "^#define[ \t]+SDL_TTF_PATCHLEVEL[ \t]+[0-9]+$") |
|
62 |
string(REGEX REPLACE "^#define[ \t]+SDL_TTF_MAJOR_VERSION[ \t]+([0-9]+)$" "\\1" SDL2_TTF_VERSION_MAJOR "${SDL2_TTF_VERSION_MAJOR_LINE}") |
|
63 |
string(REGEX REPLACE "^#define[ \t]+SDL_TTF_MINOR_VERSION[ \t]+([0-9]+)$" "\\1" SDL2_TTF_VERSION_MINOR "${SDL2_TTF_VERSION_MINOR_LINE}") |
|
64 |
string(REGEX REPLACE "^#define[ \t]+SDL_TTF_PATCHLEVEL[ \t]+([0-9]+)$" "\\1" SDL2_TTF_VERSION_PATCH "${SDL2_TTF_VERSION_PATCH_LINE}") |
|
9677 | 65 |
set(SDL2_TTF_VERSION_STRING ${SDL2_TTF_VERSION_MAJOR}.${SDL2_TTF_VERSION_MINOR}.${SDL2_TTF_VERSION_PATCH}) |
66 |
unset(SDL2_TTF_VERSION_MAJOR_LINE) |
|
67 |
unset(SDL2_TTF_VERSION_MINOR_LINE) |
|
68 |
unset(SDL2_TTF_VERSION_PATCH_LINE) |
|
69 |
unset(SDL2_TTF_VERSION_MAJOR) |
|
70 |
unset(SDL2_TTF_VERSION_MINOR) |
|
71 |
unset(SDL2_TTF_VERSION_PATCH) |
|
72 |
endif() |
|
73 |
||
74 |
set(SDL2_TTF_LIBRARIES ${SDL2_TTF_LIBRARY}) |
|
75 |
set(SDL2_TTF_INCLUDE_DIRS ${SDL2_TTF_INCLUDE_DIR}) |
|
76 |
||
11657
ae6706411b24
Hijack SDL2 and GLEW include and library when compiling to javascript
koda
parents:
9677
diff
changeset
|
77 |
if(BUILD_ENGINE_JS) |
ae6706411b24
Hijack SDL2 and GLEW include and library when compiling to javascript
koda
parents:
9677
diff
changeset
|
78 |
set(SDL2_TTF_LIBRARY "sdl2_ttf_emscripten_internal") |
ae6706411b24
Hijack SDL2 and GLEW include and library when compiling to javascript
koda
parents:
9677
diff
changeset
|
79 |
set(SDL2_TTF_LIBRARIES "sdl2_ttf_emscripten_internal") |
ae6706411b24
Hijack SDL2 and GLEW include and library when compiling to javascript
koda
parents:
9677
diff
changeset
|
80 |
set(SDL2_TTF_INCLUDE_DIRS "${CMAKE_SYSTEM_INCLUDE_PATH}/SDL") |
ae6706411b24
Hijack SDL2 and GLEW include and library when compiling to javascript
koda
parents:
9677
diff
changeset
|
81 |
endif() |
ae6706411b24
Hijack SDL2 and GLEW include and library when compiling to javascript
koda
parents:
9677
diff
changeset
|
82 |
|
9677 | 83 |
include(FindPackageHandleStandardArgs) |
84 |
||
85 |
FIND_PACKAGE_HANDLE_STANDARD_ARGS(SDL2_ttf |
|
86 |
REQUIRED_VARS SDL2_TTF_LIBRARIES SDL2_TTF_INCLUDE_DIRS |
|
87 |
VERSION_VAR SDL2_TTF_VERSION_STRING) |
|
88 |
||
89 |
# for backward compatiblity |
|
12383 | 90 |
set(SDLTTF_LIBRARY ${SDL2_TTF_LIBRARIES}) |
91 |
set(SDLTTF_INCLUDE_DIR ${SDL2_TTF_INCLUDE_DIRS}) |
|
92 |
set(SDLTTF_FOUND ${SDL2_TTF_FOUND}) |
|
9677 | 93 |
|
94 |
mark_as_advanced(SDL2_TTF_LIBRARY SDL2_TTF_INCLUDE_DIR) |