diff options
author | Bertram <bertram@cegetel.net> | 2010-02-01 16:22:39 +0100 |
---|---|---|
committer | Bertram <bertram@cegetel.net> | 2010-02-01 16:22:39 +0100 |
commit | 652ada50071c09e582a5100224f16b3a432eed1d (patch) | |
tree | 49dafc6b2134d6dea5366d8e1da2262ca085c7a8 /CMake | |
parent | 7e2a54bedefc6b5e2b34c9dafccb8322f46266e7 (diff) | |
download | mana-client-652ada50071c09e582a5100224f16b3a432eed1d.tar.gz mana-client-652ada50071c09e582a5100224f16b3a432eed1d.tar.bz2 mana-client-652ada50071c09e582a5100224f16b3a432eed1d.tar.xz mana-client-652ada50071c09e582a5100224f16b3a432eed1d.zip |
Moved from SDLrescalefacility to SDL_gfx.
Diffstat (limited to 'CMake')
-rw-r--r-- | CMake/Modules/FindSDL_gfx.cmake | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/CMake/Modules/FindSDL_gfx.cmake b/CMake/Modules/FindSDL_gfx.cmake new file mode 100644 index 00000000..092f884d --- /dev/null +++ b/CMake/Modules/FindSDL_gfx.cmake @@ -0,0 +1,39 @@ +# - Try to find SDL_gfx +# Once done this will define +# +# SDLGFX_FOUND - system has SDL_gfx +# SDLGFX_INCLUDE_DIR - the SDL_gfx include directory + +# Be quiet if SDL_gfx was already found +IF (SDL_gfx_INCLUDE_DIR AND SDL_gfx_LIBRARY) + SET(SDL_gfx_QUIET TRUE) +ENDIF (SDL_gfx_INCLUDE_DIR AND SDL_gfx_LIBRARY) + + +FIND_PATH(SDL_gfx_INCLUDE_DIR + NAMES SDL_rotozoom.h + PATHS /usr/include/SDL /usr/local/include/SDL + ) + +FIND_LIBRARY(SDL_gfx_LIBRARY + NAMES SDL_gfx + PATHS /usr/lib /usr/local/lib + ) + +MARK_AS_ADVANCED(SDL_gfx_INCLUDE_DIR SDL_gfx_LIBRARY) + + +IF (SDL_gfx_INCLUDE_DIR AND SDL_gfx_LIBRARY) + SET(SDLGFX_FOUND TRUE) + SET(SDLGFX_INCLUDE_DIR ${SDL_gfx_INCLUDE_DIR}) + SET(SDLGFX_LIBRARIES ${SDL_gfx_LIBRARY}) + + IF (NOT SDL_gfx_FIND_QUIETLY AND NOT SDL_gfx_QUIET) + MESSAGE(STATUS "Found SDL_gfx: ${SDL_gfx_LIBRARY}") + ENDIF (NOT SDL_gfx_FIND_QUIETLY AND NOT SDL_gfx_QUIET) +ENDIF (SDL_gfx_INCLUDE_DIR AND SDL_gfx_LIBRARY) + +# Bail out if SDL_gfx is not found but required +IF (NOT SDLGFX_FOUND AND SDL_gfx_FIND_REQUIRED) + MESSAGE(FATAL_ERROR "Could NOT find SDL_gfx library ${SDLGFX_INCLUDE_DIR}") +ENDIF (NOT SDLGFX_FOUND AND SDL_gfx_FIND_REQUIRED) |