mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 21:01:05 +08:00
22 lines
681 B
CMake
22 lines
681 B
CMake
|
#
|
||
|
# Try to find Ogg/Vorbis libraries and include paths.
|
||
|
# Once done this will define
|
||
|
#
|
||
|
# VORBIS_FOUND
|
||
|
# VORBIS_INCLUDE_DIRS
|
||
|
# VORBIS_LIBRARIES
|
||
|
#
|
||
|
|
||
|
find_path(OGG_INCLUDE_DIR ogg/ogg.h)
|
||
|
find_path(VORBIS_INCLUDE_DIR vorbis/vorbisfile.h)
|
||
|
|
||
|
find_library(OGG_LIBRARY NAMES ogg)
|
||
|
find_library(VORBIS_LIBRARY NAMES vorbis)
|
||
|
find_library(VORBISFILE_LIBRARY NAMES vorbisfile)
|
||
|
|
||
|
include(FindPackageHandleStandardArgs)
|
||
|
find_package_handle_standard_args(VORBIS DEFAULT_MSG VORBIS_LIBRARY VORBISFILE_LIBRARY OGG_LIBRARY VORBIS_INCLUDE_DIR OGG_INCLUDE_DIR)
|
||
|
|
||
|
set(VORBIS_INCLUDE_DIRS ${OGG_INCLUDE_DIR} ${VORBIS_INCLUDE_DIR})
|
||
|
set(VORBIS_LIBRARIES ${VORBISFILE_LIBRARY} ${VORBIS_LIBRARY} ${OGG_LIBRARY})
|