mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-12-22 22:01:46 +00:00
[client] added changes to Makefile to include additional GL libs
This commit is contained in:
parent
249801b52b
commit
a413362e53
1 changed files with 7 additions and 1 deletions
|
@ -1,9 +1,15 @@
|
|||
CFLAGS=-g -Og -std=gnu99 -march=native -Wall -Werror -I../common -DDEBUG
|
||||
LDFLAGS=-lrt -lGL
|
||||
LDFLAGS=-lrt
|
||||
|
||||
CFLAGS+=`pkg-config --cflags sdl2`
|
||||
LDFLAGS+=`pkg-config --libs sdl2`
|
||||
|
||||
CFLAGS+=`pkg-config --cflags gl`
|
||||
LDFLAGS+=`pkg-config --libs gl`
|
||||
|
||||
CFLAGS+=`pkg-config --cflags glu`
|
||||
LDFLAGS+=`pkg-config --libs glu`
|
||||
|
||||
CFLAGS+=`pkg-config --cflags libssl openssl`
|
||||
LDFLAGS+=`pkg-config --libs libssl openssl`
|
||||
|
||||
|
|
Loading…
Reference in a new issue