mirror of
https://github.com/reactos/CMake.git
synced 2024-11-26 04:50:24 +00:00
c4bb9c9d42
This adds copyright/license notification blocks CMake's find-modules. Many of the modules had no notices at all. Some had notices referring to the BSD license already. This commit normalizes existing notices and adds missing notices.
76 lines
2.0 KiB
CMake
76 lines
2.0 KiB
CMake
# Locate SDL_ttf library
|
|
# This module defines
|
|
# SDLTTF_LIBRARY, the name of the library to link against
|
|
# SDLTTF_FOUND, if false, do not try to link to SDL
|
|
# SDLTTF_INCLUDE_DIR, where to find SDL/SDL.h
|
|
#
|
|
# $SDLDIR is an environment variable that would
|
|
# correspond to the ./configure --prefix=$SDLDIR
|
|
# used in building SDL.
|
|
#
|
|
# Created by Eric Wing. This was influenced by the FindSDL.cmake
|
|
# module, but with modifications to recognize OS X frameworks and
|
|
# additional Unix paths (FreeBSD, etc).
|
|
|
|
#=============================================================================
|
|
# Copyright 2005-2009 Kitware, Inc.
|
|
#
|
|
# Distributed under the OSI-approved BSD License (the "License");
|
|
# see accompanying file Copyright.txt for details.
|
|
#
|
|
# This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
# See the License for more information.
|
|
#=============================================================================
|
|
# (To distributed this file outside of CMake, substitute the full
|
|
# License text for the above reference.)
|
|
|
|
FIND_PATH(SDLTTF_INCLUDE_DIR SDL_ttf.h
|
|
HINTS
|
|
$ENV{SDLTTFDIR}
|
|
$ENV{SDLDIR}
|
|
PATH_SUFFIXES include
|
|
PATHS
|
|
~/Library/Frameworks
|
|
/Library/Frameworks
|
|
/usr/local/include/SDL
|
|
/usr/include/SDL
|
|
/usr/local/include/SDL12
|
|
/usr/local/include/SDL11 # FreeBSD ports
|
|
/usr/include/SDL12
|
|
/usr/include/SDL11
|
|
/usr/local/include
|
|
/usr/include
|
|
/sw/include/SDL # Fink
|
|
/sw/include
|
|
/opt/local/include/SDL # DarwinPorts
|
|
/opt/local/include
|
|
/opt/csw/include/SDL # Blastwave
|
|
/opt/csw/include
|
|
/opt/include/SDL
|
|
/opt/include
|
|
)
|
|
|
|
FIND_LIBRARY(SDLTTF_LIBRARY
|
|
NAMES SDL_ttf
|
|
HINTS
|
|
$ENV{SDLTTFDIR}
|
|
$ENV{SDLDIR}
|
|
PATHS
|
|
~/Library/Frameworks
|
|
/Library/Frameworks
|
|
/usr/local
|
|
/usr
|
|
/sw
|
|
/opt/local
|
|
/opt/csw
|
|
/opt
|
|
PATH_SUFFIXES lib64 lib
|
|
)
|
|
|
|
SET(SDLTTF_FOUND "NO")
|
|
IF(SDLTTF_LIBRARY AND SDLTTF_INCLUDE_DIR)
|
|
SET(SDLTTF_FOUND "YES")
|
|
ENDIF(SDLTTF_LIBRARY AND SDLTTF_INCLUDE_DIR)
|
|
|