mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-24 14:36:15 +02:00
move message dir into common
This commit is contained in:
parent
3f16a6ce88
commit
54a8ca824f
23 changed files with 14 additions and 12 deletions
|
@ -146,6 +146,5 @@ endif()
|
||||||
|
|
||||||
|
|
||||||
add_subdirectory(common)
|
add_subdirectory(common)
|
||||||
add_subdirectory(message)
|
|
||||||
add_subdirectory(server)
|
add_subdirectory(server)
|
||||||
add_subdirectory(client)
|
add_subdirectory(client)
|
||||||
|
|
|
@ -11,6 +11,7 @@ set(CLIENT_LIBRARIES ${CMAKE_THREAD_LIBS_INIT} common message)
|
||||||
|
|
||||||
set(CLIENT_INCLUDE
|
set(CLIENT_INCLUDE
|
||||||
${CMAKE_SOURCE_DIR}/client
|
${CMAKE_SOURCE_DIR}/client
|
||||||
|
${CMAKE_SOURCE_DIR}/common
|
||||||
${ASIO_INCLUDE_DIRS}
|
${ASIO_INCLUDE_DIRS}
|
||||||
${POPL_INCLUDE_DIRS})
|
${POPL_INCLUDE_DIRS})
|
||||||
|
|
||||||
|
|
|
@ -34,9 +34,9 @@ endif
|
||||||
DEBUG=-O3
|
DEBUG=-O3
|
||||||
|
|
||||||
|
|
||||||
CXXFLAGS += $(ADD_CFLAGS) -std=c++0x -Wall -Wno-unused-function $(DEBUG) -DHAS_FLAC -DHAS_OGG -DASIO_STANDALONE -DVERSION=\"$(VERSION)\" -I. -I.. -isystem ../externals/asio/asio/include -I../externals/popl/include -I../externals/aixlog/include -I../externals
|
CXXFLAGS += $(ADD_CFLAGS) -std=c++0x -Wall -Wno-unused-function $(DEBUG) -DHAS_FLAC -DHAS_OGG -DASIO_STANDALONE -DVERSION=\"$(VERSION)\" -I. -I.. -isystem ../externals/asio/asio/include -I../externals/popl/include -I../externals/aixlog/include -I../externals -I../common
|
||||||
LDFLAGS = -logg -lFLAC
|
LDFLAGS = -logg -lFLAC
|
||||||
OBJ = snapClient.o stream.o clientConnection.o timeProvider.o player/player.o decoder/pcmDecoder.o decoder/oggDecoder.o decoder/flacDecoder.o controller.o ../message/pcmChunk.o ../common/sampleFormat.o
|
OBJ = snapClient.o stream.o clientConnection.o timeProvider.o player/player.o decoder/pcmDecoder.o decoder/oggDecoder.o decoder/flacDecoder.o controller.o ../common/message/pcmChunk.o ../common/sampleFormat.o
|
||||||
|
|
||||||
|
|
||||||
ifneq (,$(TARGET))
|
ifneq (,$(TARGET))
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
#include <cmath>
|
#include <cmath>
|
||||||
#include "flacDecoder.h"
|
#include "flacDecoder.h"
|
||||||
#include "common/snapException.h"
|
#include "common/snapException.h"
|
||||||
#include "common/endian.h"
|
#include "common/endian.hpp"
|
||||||
#include "aixlog.hpp"
|
#include "aixlog.hpp"
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
#include "oggDecoder.h"
|
#include "oggDecoder.h"
|
||||||
#include "common/snapException.h"
|
#include "common/snapException.h"
|
||||||
#include "common/endian.h"
|
#include "common/endian.hpp"
|
||||||
#include "aixlog.hpp"
|
#include "aixlog.hpp"
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
***/
|
***/
|
||||||
|
|
||||||
#include "common/snapException.h"
|
#include "common/snapException.h"
|
||||||
#include "common/endian.h"
|
#include "common/endian.hpp"
|
||||||
#include "aixlog.hpp"
|
#include "aixlog.hpp"
|
||||||
#include "pcmDecoder.h"
|
#include "pcmDecoder.h"
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include "stream.h"
|
#include "stream.h"
|
||||||
#include "pcmDevice.h"
|
#include "pcmDevice.h"
|
||||||
#include "common/endian.h"
|
#include "common/endian.hpp"
|
||||||
#include "aixlog.hpp"
|
#include "aixlog.hpp"
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1 +1,2 @@
|
||||||
add_library(common STATIC daemon.cpp sampleFormat.cpp)
|
add_library(common STATIC daemon.cpp sampleFormat.cpp)
|
||||||
|
add_subdirectory(message)
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
#include <streambuf>
|
#include <streambuf>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#include "common/endian.h"
|
#include "common/endian.hpp"
|
||||||
#include "common/timeDefs.h"
|
#include "common/timeDefs.h"
|
||||||
|
|
||||||
|
|
|
@ -25,6 +25,7 @@ set(SERVER_LIBRARIES
|
||||||
|
|
||||||
set(SERVER_INCLUDE
|
set(SERVER_INCLUDE
|
||||||
${CMAKE_SOURCE_DIR}/server
|
${CMAKE_SOURCE_DIR}/server
|
||||||
|
${CMAKE_SOURCE_DIR}/common
|
||||||
${FLAC_INCLUDE_DIRS})
|
${FLAC_INCLUDE_DIRS})
|
||||||
|
|
||||||
# Avahi
|
# Avahi
|
||||||
|
|
|
@ -34,9 +34,9 @@ endif
|
||||||
DEBUG=-O3
|
DEBUG=-O3
|
||||||
|
|
||||||
|
|
||||||
CXXFLAGS += $(ADD_CFLAGS) -std=c++0x -Wall -Wno-unused-function $(DEBUG) -DHAS_FLAC -DHAS_OGG -DHAS_VORBIS -DHAS_VORBIS_ENC -DASIO_STANDALONE -DVERSION=\"$(VERSION)\" -I. -I.. -isystem ../externals/asio/asio/include -I../externals/popl/include -I../externals/aixlog/include -I../externals
|
CXXFLAGS += $(ADD_CFLAGS) -std=c++0x -Wall -Wno-unused-function $(DEBUG) -DHAS_FLAC -DHAS_OGG -DHAS_VORBIS -DHAS_VORBIS_ENC -DASIO_STANDALONE -DVERSION=\"$(VERSION)\" -I. -I.. -isystem ../externals/asio/asio/include -I../externals/popl/include -I../externals/aixlog/include -I../externals -I../common
|
||||||
LDFLAGS = -lvorbis -lvorbisenc -logg -lFLAC
|
LDFLAGS = -lvorbis -lvorbisenc -logg -lFLAC
|
||||||
OBJ = snapServer.o config.o controlServer.o controlSession.o jsonrp.o streamServer.o streamSession.o streamreader/streamUri.o streamreader/streamManager.o streamreader/pcmStream.o streamreader/pipeStream.o streamreader/fileStream.o streamreader/processStream.o streamreader/airplayStream.o streamreader/spotifyStream.o streamreader/watchdog.o encoder/encoderFactory.o encoder/flacEncoder.o encoder/pcmEncoder.o encoder/oggEncoder.o ../common/sampleFormat.o ../message/pcmChunk.o ../common/base64.o
|
OBJ = snapServer.o config.o controlServer.o controlSession.o jsonrp.o streamServer.o streamSession.o streamreader/streamUri.o streamreader/streamManager.o streamreader/pcmStream.o streamreader/pipeStream.o streamreader/fileStream.o streamreader/processStream.o streamreader/airplayStream.o streamreader/spotifyStream.o streamreader/watchdog.o encoder/encoderFactory.o encoder/flacEncoder.o encoder/pcmEncoder.o encoder/oggEncoder.o ../common/sampleFormat.o ../common/message/pcmChunk.o ../common/base64.o
|
||||||
|
|
||||||
ifneq (,$(TARGET))
|
ifneq (,$(TARGET))
|
||||||
CXXFLAGS += -D$(TARGET)
|
CXXFLAGS += -D$(TARGET)
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
***/
|
***/
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include "common/endian.h"
|
#include "common/endian.hpp"
|
||||||
#include "pcmEncoder.h"
|
#include "pcmEncoder.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue