libsuperderpy/cmake/FindAllegro5ACodec.cmake

24 lines
1.1 KiB
CMake
Raw Normal View History

2012-08-19 03:04:55 +02:00
# Try to find allegro 5
#
# Allegro5ACodec_FOUND - system has allegro5
# Allegro5ACodec_INCLUDE_DIR - the allrgo5 include directory
# Allegro5ACodec_LIBRARIES - Link these to use allegro5
2012-08-19 03:04:55 +02:00
#
FIND_PATH(Allegro5ACodec_INCLUDE_DIR allegro5/allegro_acodec.h HINTS ${Allegro5_INCLUDE_DIR})
2012-08-19 03:04:55 +02:00
SET(Allegro5ACodec_NAMES ${Allegro5ACodec_NAMES} allegro_acodec liballegro_acodec AllegroAcodec-5.2 allegro_acodec-debug allegro_acodec_static liballegro_acodec_static allegro_acodec-static)
FIND_LIBRARY(Allegro5ACodec_LIBRARY NAMES ${Allegro5ACodec_NAMES} HINTS ${Allegro5_DIRECTORY})
2012-08-19 03:04:55 +02:00
# handle the QUIETLY and REQUIRED arguments and set Allegro5ACodec_FOUND to TRUE if
# all listed variables are TRUE
INCLUDE(FindPackageHandleStandardArgs)
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Allegro5ACodec DEFAULT_MSG Allegro5ACodec_LIBRARY Allegro5ACodec_INCLUDE_DIR)
2012-08-19 03:04:55 +02:00
IF(Allegro5ACodec_FOUND)
SET(Allegro5ACodec_LIBRARIES ${Allegro5ACodec_LIBRARY})
SET(Allegro5_LIBS ${Allegro5_LIBS} ${Allegro5ACodec_LIBRARIES})
ENDIF(Allegro5ACodec_FOUND)
2012-08-19 03:04:55 +02:00
MARK_AS_ADVANCED(Allegro5ACodec_LIBRARY Allegro5ACodec_INCLUDE_DIR )