# Hamigaki Audio Library Jamfile

#  Copyright Takeshi Mouri 2006.
#  Use, modification, and distribution are subject to the
#  Boost Software License, Version 1.0. (See accompanying file
#  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

subproject libs/audio/build ;

OGG_BINARY ?= ogg ;
VORBIS_BINARY ?= vorbis ;
VORBISFILE_BINARY ?= vorbisfile ;

lib hamigaki_audio
    :
        ../src/pcm_device.cpp
        ../src/vorbis_file.cpp
    :
        <include>$(HAMIGAKI_ROOT)  <sysinclude>$(HAMIGAKI_ROOT)
        <include>$(BOOST_INCLUDE)  <sysinclude>$(BOOST_INCLUDE)
        <include>$(OGG_INCLUDE)    <sysinclude>$(OGG_INCLUDE)
        <include>$(VORBIS_INCLUDE) <sysinclude>$(VORBIS_INCLUDE)
    :
        debug release
    ;
