blob: 2e45c73c3ecc834e24494a4c67e66b78095e43a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
export MAKEFILE_NAME = GNUmakefile.gnustep
include $(GNUSTEP_MAKEFILES)/common.make
LIBRARY_NAME = libgstopengl
libgstopengl_VERSION = 1.0.0
libgstopengl_SUBPROJECTS = gst-libs/gst/gl gst/gl gst/gl/effects
ifeq ($(GNUSTEP_TARGET_OS), mingw32)
libgstopengl_LIB_DIRS += \
-LC:/gstreamer/bin
endif
libgstopengl_TOOL_LIBS = \
-lglib-2.0-0 \
-lgobject-2.0-0 \
-lgmodule-2.0-0 \
-lgthread-2.0-0 \
-lgstreamer-0.10 \
-lgstbase-0.10 \
-lgstvideo-0.10 \
-lgstinterfaces-0.10 \
-lgstcontroller-0.10 \
-lpng \
-lz
ifeq ($(GNUSTEP_TARGET_OS), mingw32)
libgstopengl_TOOL_LIBS += \
-lglu32 \
-lopengl32 \
-lglew32 \
-lgdi32
endif
include $(GNUSTEP_MAKEFILES)/library.make
|