mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-12 19:31:41 +00:00
added libraries: opus flac libsndfile updated: libvorbis libogg openal - Everything works as expected for now. Bare in mind libsndfile needed the check for whether or not it could find the xiph libraries removed in order for this to work.
19 lines
396 B
CMake
19 lines
396 B
CMake
@PACKAGE_INIT@
|
|
|
|
include(CMakeFindDependencyMacro)
|
|
find_dependency(Ogg REQUIRED)
|
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/VorbisTargets.cmake)
|
|
|
|
set(Vorbis_Vorbis_FOUND 1)
|
|
set(Vorbis_Enc_FOUND 0)
|
|
set(Vorbis_File_FOUND 0)
|
|
|
|
if(TARGET Vorbis::vorbisenc)
|
|
set(Vorbis_Enc_FOUND TRUE)
|
|
endif()
|
|
if(TARGET Vorbis::vorbisfile)
|
|
set(Vorbis_File_FOUND TRUE)
|
|
endif()
|
|
|
|
check_required_components(Vorbis Enc File)
|