[client] moved common headers outside of the client project's directory

This commit is contained in:
Geoffrey McRae 2017-10-31 16:54:09 +11:00
parent 0125e02499
commit 6e7b65023b
4 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
CFLAGS=-g -Og -std=gnu99 -march=native -Wall -Werror -I./ -DDEBUG
CFLAGS=-g -Og -std=gnu99 -march=native -Wall -Werror -I../common -DDEBUG
LDFLAGS=-lrt -lGL
CFLAGS+=`pkg-config --cflags sdl2`

View file

@ -21,7 +21,7 @@
#include <spice/protocol.h>
#include <spice/error_codes.h>
#include "spice/messages.h"
#include "messages.h"
#ifdef DEBUG_SPICE_MOUSE
#define DEBUG_MOUSE(fmt, args...) DEBUG_PRINT("[M]", fmt, ##args)