Link against Cg framework on OSX.

This commit is contained in:
Themaister 2012-10-15 11:01:15 +02:00
parent 298600781c
commit 2af0a43ad0

View File

@ -222,7 +222,11 @@ endif
ifeq ($(HAVE_CG), 1)
OBJ += gfx/shader_cg.o
LIBS += -lCg -lCgGL
ifeq ($(OSX), 1)
LIBS += -framework Cg
else
LIBS += -lCg -lCgGL
endif
endif
ifeq ($(HAVE_XML), 1)