mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-22 13:36:18 +02:00
moved json stuff into subfolder
This commit is contained in:
parent
bab4f92e23
commit
aeb767d64b
8 changed files with 4 additions and 4 deletions
|
@ -6,7 +6,7 @@ CXX = /usr/bin/g++
|
|||
CFLAGS = -std=c++0x -Wall -Wno-unused-function -O3 -pthread -DVERSION=\"$(VERSION)\" -I..
|
||||
LDFLAGS = -lrt -lboost_system -lboost_program_options -lvorbis -lvorbisenc -logg -lFLAC -lavahi-client -lavahi-common
|
||||
|
||||
OBJ = snapServer.o config.o controlServer.o controlSession.o streamServer.o jsonrpc.o encoder/encoderFactory.o encoder/flacEncoder.o encoder/pcmEncoder.o encoder/oggEncoder.o clientSession.o publishAvahi.o pipeReader.o ../common/log.o ../message/pcmChunk.o ../message/sampleFormat.o
|
||||
OBJ = snapServer.o config.o controlServer.o controlSession.o streamServer.o json/jsonrpc.o encoder/encoderFactory.o encoder/flacEncoder.o encoder/pcmEncoder.o encoder/oggEncoder.o clientSession.o publishAvahi.o pipeReader.o ../common/log.o ../message/pcmChunk.o ../message/sampleFormat.o
|
||||
BIN = snapserver
|
||||
|
||||
all: $(TARGET)
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#include <memory>
|
||||
#include <vector>
|
||||
#include <sys/time.h>
|
||||
#include "json.hpp"
|
||||
#include "json/json.hpp"
|
||||
|
||||
using json = nlohmann::json;
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include "common/log.h"
|
||||
#include "common/utils.h"
|
||||
#include "common/snapException.h"
|
||||
#include "jsonrpc.h"
|
||||
#include "json/jsonrpc.h"
|
||||
#include "config.h"
|
||||
#include <iostream>
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
***/
|
||||
|
||||
#include "jsonrpc.h"
|
||||
#include "json/jsonrpc.h"
|
||||
#include "streamServer.h"
|
||||
#include "message/time.h"
|
||||
#include "message/ack.h"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue