2015-07-10 10:31:51 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015 Andrew Kelley
|
|
|
|
*
|
|
|
|
* This file is part of libsoundio, which is MIT licensed.
|
|
|
|
* See http://opensource.org/licenses/MIT
|
|
|
|
*/
|
|
|
|
|
2015-06-30 21:04:45 +00:00
|
|
|
#ifndef SOUNDIO_CONFIG_H
|
|
|
|
#define SOUNDIO_CONFIG_H
|
|
|
|
|
|
|
|
#define SOUNDIO_VERSION_MAJOR @LIBSOUNDIO_VERSION_MAJOR@
|
|
|
|
#define SOUNDIO_VERSION_MINOR @LIBSOUNDIO_VERSION_MINOR@
|
|
|
|
#define SOUNDIO_VERSION_PATCH @LIBSOUNDIO_VERSION_PATCH@
|
|
|
|
#define SOUNDIO_VERSION_STRING "@LIBSOUNDIO_VERSION@"
|
|
|
|
|
2015-07-25 01:43:14 +00:00
|
|
|
#cmakedefine SOUNDIO_HAVE_JACK
|
2015-07-02 10:48:27 +00:00
|
|
|
#cmakedefine SOUNDIO_HAVE_PULSEAUDIO
|
2015-07-25 01:43:14 +00:00
|
|
|
#cmakedefine SOUNDIO_HAVE_ALSA
|
2015-08-01 01:52:51 +00:00
|
|
|
#cmakedefine SOUNDIO_HAVE_COREAUDIO
|
2015-08-08 22:22:50 +00:00
|
|
|
#cmakedefine SOUNDIO_HAVE_WASAPI
|
2015-06-30 21:04:45 +00:00
|
|
|
|
|
|
|
#endif
|