Adjusted the new audio backends to compile on Linux

This commit is contained in:
Jonathan De Wachter 2014-10-07 09:35:46 +02:00 committed by Mario Liebisch
parent 5e0e645f46
commit 3fbfde39a5
15 changed files with 12 additions and 8 deletions

View file

@ -7,9 +7,10 @@
# FLAC_LIBRARY
#
find_path(FLAC_INCLUDE_DIR flac/stream_decoder.h)
find_path(FLAC_INCLUDE_DIR FLAC/all.h)
find_path(FLAC_INCLUDE_DIR FLAC/stream_decoder.h)
find_library(FLAC_LIBRARY NAMES flac)
find_library(FLAC_LIBRARY NAMES FLAC)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(FLAC DEFAULT_MSG FLAC_LIBRARY FLAC_INCLUDE_DIR)