FindSDL2_ttf.cmake 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. # Locate SDL_ttf library
  2. #
  3. # This module defines:
  4. #
  5. # ::
  6. #
  7. # SDL2_TTF_LIBRARIES, the name of the library to link against
  8. # SDL2_TTF_INCLUDE_DIRS, where to find the headers
  9. # SDL2_TTF_FOUND, if false, do not try to link against
  10. # SDL2_TTF_VERSION_STRING - human-readable string containing the version of SDL_ttf
  11. #
  12. #
  13. #
  14. # For backward compatibility the following variables are also set:
  15. #
  16. # ::
  17. #
  18. # SDLTTF_LIBRARY (same value as SDL2_TTF_LIBRARIES)
  19. # SDLTTF_INCLUDE_DIR (same value as SDL2_TTF_INCLUDE_DIRS)
  20. # SDLTTF_FOUND (same value as SDL2_TTF_FOUND)
  21. #
  22. #
  23. #
  24. # $SDLDIR is an environment variable that would correspond to the
  25. # ./configure --prefix=$SDLDIR used in building SDL.
  26. #
  27. # Created by Eric Wing. This was influenced by the FindSDL.cmake
  28. # module, but with modifications to recognize OS X frameworks and
  29. # additional Unix paths (FreeBSD, etc).
  30. #=============================================================================
  31. # Copyright 2005-2009 Kitware, Inc.
  32. # Copyright 2012 Benjamin Eikel
  33. #
  34. # Distributed under the OSI-approved BSD License (the "License");
  35. # see accompanying file Copyright.txt for details.
  36. #
  37. # This software is distributed WITHOUT ANY WARRANTY; without even the
  38. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  39. # See the License for more information.
  40. #=============================================================================
  41. # (To distribute this file outside of CMake, substitute the full
  42. # License text for the above reference.)
  43. find_path(SDL2_TTF_INCLUDE_DIR SDL_ttf.h
  44. HINTS
  45. ENV SDL2TTFDIR
  46. ENV SDL2DIR
  47. PATH_SUFFIXES SDL2
  48. # path suffixes to search inside ENV{SDLDIR}
  49. include/SDL2 include
  50. PATHS ${SDL2_TTF_PATH}
  51. )
  52. if (CMAKE_SIZEOF_VOID_P EQUAL 8)
  53. set(VC_LIB_PATH_SUFFIX lib/x64)
  54. else ()
  55. set(VC_LIB_PATH_SUFFIX lib/x86)
  56. endif ()
  57. find_library(SDL2_TTF_LIBRARY
  58. NAMES SDL2_ttf
  59. HINTS
  60. ENV SDL2TTFDIR
  61. ENV SDL2DIR
  62. PATH_SUFFIXES lib ${VC_LIB_PATH_SUFFIX}
  63. PATHS ${SDL2_TTF_PATH}
  64. )
  65. if (SDL2_TTF_INCLUDE_DIR AND EXISTS "${SDL2_TTF_INCLUDE_DIR}/SDL_ttf.h")
  66. file(STRINGS "${SDL2_TTF_INCLUDE_DIR}/SDL_ttf.h" SDL2_TTF_VERSION_MAJOR_LINE REGEX "^#define[ \t]+SDL_TTF_MAJOR_VERSION[ \t]+[0-9]+$")
  67. file(STRINGS "${SDL2_TTF_INCLUDE_DIR}/SDL_ttf.h" SDL2_TTF_VERSION_MINOR_LINE REGEX "^#define[ \t]+SDL_TTF_MINOR_VERSION[ \t]+[0-9]+$")
  68. file(STRINGS "${SDL2_TTF_INCLUDE_DIR}/SDL_ttf.h" SDL2_TTF_VERSION_PATCH_LINE REGEX "^#define[ \t]+SDL_TTF_PATCHLEVEL[ \t]+[0-9]+$")
  69. string(REGEX REPLACE "^#define[ \t]+SDL_TTF_MAJOR_VERSION[ \t]+([0-9]+)$" "\\1" SDL2_TTF_VERSION_MAJOR "${SDL2_TTF_VERSION_MAJOR_LINE}")
  70. string(REGEX REPLACE "^#define[ \t]+SDL_TTF_MINOR_VERSION[ \t]+([0-9]+)$" "\\1" SDL2_TTF_VERSION_MINOR "${SDL2_TTF_VERSION_MINOR_LINE}")
  71. string(REGEX REPLACE "^#define[ \t]+SDL_TTF_PATCHLEVEL[ \t]+([0-9]+)$" "\\1" SDL2_TTF_VERSION_PATCH "${SDL2_TTF_VERSION_PATCH_LINE}")
  72. set(SDL2_TTF_VERSION_STRING ${SDL2_TTF_VERSION_MAJOR}.${SDL2_TTF_VERSION_MINOR}.${SDL2_TTF_VERSION_PATCH})
  73. unset(SDL2_TTF_VERSION_MAJOR_LINE)
  74. unset(SDL2_TTF_VERSION_MINOR_LINE)
  75. unset(SDL2_TTF_VERSION_PATCH_LINE)
  76. unset(SDL2_TTF_VERSION_MAJOR)
  77. unset(SDL2_TTF_VERSION_MINOR)
  78. unset(SDL2_TTF_VERSION_PATCH)
  79. endif ()
  80. set(SDL2_TTF_LIBRARIES ${SDL2_TTF_LIBRARY})
  81. set(SDL2_TTF_INCLUDE_DIRS ${SDL2_TTF_INCLUDE_DIR})
  82. include(FindPackageHandleStandardArgs)
  83. FIND_PACKAGE_HANDLE_STANDARD_ARGS(SDL2_ttf
  84. REQUIRED_VARS SDL2_TTF_LIBRARIES SDL2_TTF_INCLUDE_DIRS
  85. VERSION_VAR SDL2_TTF_VERSION_STRING)
  86. # for backward compatibility
  87. set(SDLTTF_LIBRARY ${SDL2_TTF_LIBRARIES})
  88. set(SDLTTF_INCLUDE_DIR ${SDL2_TTF_INCLUDE_DIRS})
  89. set(SDLTTF_FOUND ${SDL2_TTF_FOUND})