diff options
| author | Tomáš Chvátal <scarabeus@gentoo.org> | 2009-11-04 18:13:17 +0100 |
|---|---|---|
| committer | Tomáš Chvátal <scarabeus@gentoo.org> | 2009-11-04 18:13:17 +0100 |
| commit | 74587630c371c63683b46641e1fe03ff0dc25c4e (patch) | |
| tree | 5d3d5a58836c411ca51dc5d63e3fb80435bcd6b9 /cmake | |
| parent | edfa82d4ef9527dc18194460b1f03707845b5536 (diff) | |
Reorder deps a bit.
Diffstat (limited to 'cmake')
| -rw-r--r-- | cmake/FindSDL_ttf.cmake | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/cmake/FindSDL_ttf.cmake b/cmake/FindSDL_ttf.cmake deleted file mode 100644 index 32dbbad..0000000 --- a/cmake/FindSDL_ttf.cmake +++ /dev/null @@ -1,64 +0,0 @@ -# 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). - -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 - ${CMAKE_SOURCE_DIR}/packaging/windows/SDL/include #tuxanci -) - -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 - ${CMAKE_SOURCE_DIR}/packaging/windows/SDL/ - 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) - |