/indra/cmake/FindFMOD.cmake
CMake | 44 lines | 27 code | 7 blank | 10 comment | 0 complexity | 965272d75fafa7b00b77513e282fd436 MD5 | raw file
Possible License(s): LGPL-2.1
- # -*- cmake -*-
- # - Find FMOD
- # Find the FMOD includes and library
- # This module defines
- # FMOD_INCLUDE_DIR, where to find fmod.h and fmod_errors.h
- # FMOD_LIBRARIES, the libraries needed to use FMOD.
- # FMOD, If false, do not try to use FMOD.
- # also defined, but not for general use are
- # FMOD_LIBRARY, where to find the FMOD library.
- FIND_PATH(FMOD_INCLUDE_DIR fmod.h PATH_SUFFIXES fmod)
- SET(FMOD_NAMES ${FMOD_NAMES} fmod fmodvc fmodex fmod-3.75)
- FIND_LIBRARY(FMOD_LIBRARY
- NAMES ${FMOD_NAMES}
- PATH_SUFFIXES fmod
- )
- IF (FMOD_LIBRARY AND FMOD_INCLUDE_DIR)
- SET(FMOD_LIBRARIES ${FMOD_LIBRARY})
- SET(FMOD_FOUND "YES")
- ELSE (FMOD_LIBRARY AND FMOD_INCLUDE_DIR)
- SET(FMOD_FOUND "NO")
- ENDIF (FMOD_LIBRARY AND FMOD_INCLUDE_DIR)
- IF (FMOD_FOUND)
- IF (NOT FMOD_FIND_QUIETLY)
- MESSAGE(STATUS "Found FMOD: ${FMOD_LIBRARIES}")
- ENDIF (NOT FMOD_FIND_QUIETLY)
- ELSE (FMOD_FOUND)
- IF (FMOD_FIND_REQUIRED)
- MESSAGE(FATAL_ERROR "Could not find FMOD library")
- ENDIF (FMOD_FIND_REQUIRED)
- ENDIF (FMOD_FOUND)
- # Deprecated declarations.
- SET (NATIVE_FMOD_INCLUDE_PATH ${FMOD_INCLUDE_DIR} )
- GET_FILENAME_COMPONENT (NATIVE_FMOD_LIB_PATH ${FMOD_LIBRARY} PATH)
- MARK_AS_ADVANCED(
- FMOD_LIBRARY
- FMOD_INCLUDE_DIR
- )