moved json.hpp to externals

This commit is contained in:
badaix 2016-04-03 14:38:11 +02:00
parent 478dcff713
commit a386a4ec89
12 changed files with 12 additions and 12 deletions

View file

@ -10,7 +10,7 @@ else
endif
CXXFLAGS += $(ADD_CFLAGS) -std=c++0x -Wall -Wno-unused-function -O3 -pthread -DASIO_STANDALONE -DVERSION=\"$(VERSION)\" -I.. -I../externals/asio/asio/include -I../externals/popl/include
CXXFLAGS += $(ADD_CFLAGS) -std=c++0x -Wall -Wno-unused-function -O3 -pthread -DASIO_STANDALONE -DVERSION=\"$(VERSION)\" -I. -I.. -I../externals/asio/asio/include -I../externals/popl/include
OBJ = snapClient.o stream.o clientConnection.o timeProvider.o player/player.o decoder/pcmDecoder.o decoder/flacDecoder.o controller.o ../message/pcmChunk.o ../common/log.o ../message/sampleFormat.o
ifeq ($(TARGET), ANDROID)

View file

@ -23,7 +23,7 @@
#include <thread>
#include <atomic>
#include <vector>
#include "../stream.h"
#include "stream.h"
#include "pcmDevice.h"
#include "common/endian.h"
#include "common/log.h"

View file

@ -9,7 +9,7 @@ else
TARGET_DIR ?= /usr
endif
CXXFLAGS += -std=c++0x -Wall -Wno-unused-function -O3 -pthread -DASIO_STANDALONE -DVERSION=\"$(VERSION)\" -I.. -I../externals/asio/asio/include -I../externals/popl/include
CXXFLAGS += -std=c++0x -Wall -Wno-unused-function -O3 -pthread -DASIO_STANDALONE -DVERSION=\"$(VERSION)\" -I. -I.. -I../externals/asio/asio/include -I../externals/popl/include
ifeq ($(TARGET), OPENWRT)

View file

@ -23,7 +23,7 @@
#include <memory>
#include <vector>
#include <sys/time.h>
#include "json/json.hpp"
#include "externals/json.hpp"
#include "common/utils.h"

View file

@ -21,7 +21,7 @@
#include <string>
#include <vector>
#include "json.hpp"
#include "externals/json.hpp"
#include "jsonrpcException.h"

View file

@ -20,7 +20,7 @@
#define JSON_RPC_EXCEPTION_H
#include <string>
#include "json.hpp"
#include "externals/json.hpp"
#include "common/snapException.h"

View file

@ -22,7 +22,7 @@
#include <unistd.h>
#include "fileStream.h"
#include "../encoder/encoderFactory.h"
#include "encoder/encoderFactory.h"
#include "common/log.h"
#include "common/snapException.h"

View file

@ -21,7 +21,7 @@
#include <fcntl.h>
#include <unistd.h>
#include "../encoder/encoderFactory.h"
#include "encoder/encoderFactory.h"
#include "common/snapException.h"
#include "common/compat.h"
#include "pcmStream.h"

View file

@ -24,8 +24,8 @@
#include <string>
#include <map>
#include "streamUri.h"
#include "../encoder/encoder.h"
#include "../json/json.hpp"
#include "encoder/encoder.h"
#include "externals/json.hpp"
#include "message/sampleFormat.h"
#include "message/header.h"

View file

@ -23,7 +23,7 @@
#include <cerrno>
#include "pipeStream.h"
#include "../encoder/encoderFactory.h"
#include "encoder/encoderFactory.h"
#include "common/log.h"
#include "common/snapException.h"
#include "common/compat.h"

View file

@ -21,7 +21,7 @@
#include <string>
#include <map>
#include "../json/json.hpp"
#include "externals/json.hpp"
using json = nlohmann::json;