mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-14 17:46:45 +02:00
Fix compile error on Windows
This commit is contained in:
parent
827cfb7985
commit
bbdbe48cbc
1 changed files with 9 additions and 3 deletions
|
@ -16,11 +16,12 @@
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
***/
|
***/
|
||||||
|
|
||||||
|
#ifndef NOMINMAX
|
||||||
|
#define NOMINMAX
|
||||||
|
#endif // NOMINMAX
|
||||||
|
|
||||||
#include "controller.hpp"
|
#include "controller.hpp"
|
||||||
#include "decoder/pcm_decoder.hpp"
|
#include "decoder/pcm_decoder.hpp"
|
||||||
#include <iostream>
|
|
||||||
#include <memory>
|
|
||||||
#include <string>
|
|
||||||
#if defined(HAS_OGG) && (defined(HAS_TREMOR) || defined(HAS_VORBIS))
|
#if defined(HAS_OGG) && (defined(HAS_TREMOR) || defined(HAS_VORBIS))
|
||||||
#include "decoder/ogg_decoder.hpp"
|
#include "decoder/ogg_decoder.hpp"
|
||||||
#endif
|
#endif
|
||||||
|
@ -36,6 +37,11 @@
|
||||||
#include "message/time.hpp"
|
#include "message/time.hpp"
|
||||||
#include "time_provider.hpp"
|
#include "time_provider.hpp"
|
||||||
|
|
||||||
|
#include <algorithm>
|
||||||
|
#include <iostream>
|
||||||
|
#include <memory>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue