12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- # Locate SDL_gfx library
- # This module defines
- # SDLGFX_LIBRARY, the name of the library to link against
- # SDLGFX_FOUND, if false, do not try to link to SDL
- # SDLGFX_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 David Demelier. This was influenced by the FindSDL_mixer.cmake
- #=============================================================================
- # 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 distribute this file outside of CMake, substitute the full
- # License text for the above reference.)
- FIND_PATH(SDLGFX_INCLUDE_DIR SDL_gfxPrimitives.h
- HINTS
- $ENV{SDLGFXDIR}
- $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(SDLGFX_LIBRARY
- NAMES SDL_gfx
- HINTS
- $ENV{SDLGFXDIR}
- $ENV{SDLDIR}
- PATH_SUFFIXES lib64 lib
- PATHS
- ~/Library/Frameworks
- /Library/Frameworks
- /usr/local
- /usr
- /sw
- /opt/local
- /opt/csw
- /opt
- )
- SET(SDLGFX_FOUND "NO")
- IF(SDLGFX_LIBRARY AND SDLGFX_INCLUDE_DIR)
- SET(SDLGFX_FOUND "YES")
- ENDIF(SDLGFX_LIBRARY AND SDLGFX_INCLUDE_DIR)
|