You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
akode/akode/plugins/xiph_decoder/CMakeLists.txt

45 lines
913 B

#################################################
#
# (C) 2015 Slávek Banko
# slavek (DOT) banko (AT) axis.cz
#
# Improvements and feedback are welcome
#
# This file is released under GPL >= 2
#
#################################################
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_BINARY_DIR}/akode/lib
${CMAKE_SOURCE_DIR}/akode/lib
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${SPEEX_INCLUDE_DIRS}
)
##### library ###################################
set( target libakode_xiph_decoder )
set( ${target}_SRCS
flac_decoder.cpp
flac113_decoder.cpp
speex_decoder.cpp
vorbis_decoder.cpp
xiph_decoder.cpp
)
tde_add_library(
${target} MODULE
SOURCES ${${target}_SRCS}
LINK
akode-shared
${FLAC_LIBRARIES} ${OGGFLAC_LIBRARIES}
${VORBIS_LIBRARIES} ${VORBISFILE_LIBRARIES}
${SPEEX_LIBRARIES} ${OGG_LIBRARIES}
DESTINATION ${LIB_INSTALL_DIR}
)