added warning for MacOS

This commit is contained in:
Johannes Pohl 2016-09-21 11:59:34 +02:00
parent 2d89a08691
commit 560cdb0f01
2 changed files with 8 additions and 0 deletions

View file

@ -28,6 +28,11 @@
/// Audio Player
/**
* Audio player implementation using CoreAudio
*
* Warning:
*
* !! This player is experimental and might not be maintained !!
*
*/
class CoreAudioPlayer : public Player
{

View file

@ -66,6 +66,9 @@ PcmDevice getPcmDevice(const std::string& soundcard)
int main (int argc, char **argv)
{
#ifdef MACOS
#pragma message "Warning: the Mac OS support is experimental and might not be maintained"
#endif
try
{
string soundcard("default");