mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-22 05:27:20 +00:00
[client] added changes to Makefile to include additional GL libs
This commit is contained in:
parent
249801b52b
commit
a413362e53
@ -1,9 +1,15 @@
|
|||||||
CFLAGS=-g -Og -std=gnu99 -march=native -Wall -Werror -I../common -DDEBUG
|
CFLAGS=-g -Og -std=gnu99 -march=native -Wall -Werror -I../common -DDEBUG
|
||||||
LDFLAGS=-lrt -lGL
|
LDFLAGS=-lrt
|
||||||
|
|
||||||
CFLAGS+=`pkg-config --cflags sdl2`
|
CFLAGS+=`pkg-config --cflags sdl2`
|
||||||
LDFLAGS+=`pkg-config --libs 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`
|
CFLAGS+=`pkg-config --cflags libssl openssl`
|
||||||
LDFLAGS+=`pkg-config --libs libssl openssl`
|
LDFLAGS+=`pkg-config --libs libssl openssl`
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user