mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-01-08 21:33:57 +00:00
[client] moved spice implementation into subdirectory
This commit is contained in:
parent
18a6b4f279
commit
314b8621ea
5 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
CFLAGS=-g -Og -std=gnu99 -march=native -Wall -Werror
|
||||
CFLAGS=-g -Og -std=gnu99 -march=native -Wall -Werror -I./
|
||||
LDFLAGS=-lrt -lGL
|
||||
|
||||
CFLAGS+=`pkg-config --cflags sdl2`
|
||||
|
@ -10,4 +10,4 @@ LDFLAGS+=`pkg-config --libs libssl openssl`
|
|||
CFLAGS+=`pkg-config --cflags spice-protocol`
|
||||
|
||||
all:
|
||||
gcc ${CFLAGS} -o main main.c spice.c ${LDFLAGS}
|
||||
gcc ${CFLAGS} -o main main.c spice/spice.c ${LDFLAGS}
|
||||
|
|
BIN
client/main
BIN
client/main
Binary file not shown.
|
@ -16,7 +16,7 @@
|
|||
#define DEBUG
|
||||
#include "debug.h"
|
||||
#include "KVMGFXHeader.h"
|
||||
#include "spice.h"
|
||||
#include "spice/spice.h"
|
||||
#include "kb.h"
|
||||
|
||||
#define MAP_SIZE (16*1024*1024)
|
||||
|
|
Loading…
Reference in a new issue