mirror of
https://github.com/Ryujinx/libsoundio.git
synced 2024-12-23 07:15:31 +00:00
24 lines
606 B
C
24 lines
606 B
C
/*
|
|
* Copyright (c) 2015 Andrew Kelley
|
|
*
|
|
* This file is part of libsoundio, which is MIT licensed.
|
|
* See http://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#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@"
|
|
|
|
#cmakedefine SOUNDIO_OS_BIG_ENDIAN
|
|
#cmakedefine SOUNDIO_OS_LITTLE_ENDIAN
|
|
|
|
#cmakedefine SOUNDIO_HAVE_JACK
|
|
#cmakedefine SOUNDIO_HAVE_PULSEAUDIO
|
|
#cmakedefine SOUNDIO_HAVE_ALSA
|
|
|
|
#endif
|