-
Notifications
You must be signed in to change notification settings - Fork 28
/
addon_config.mk
133 lines (107 loc) · 6.96 KB
/
addon_config.mk
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# All variables and this file are optional, if they are not present the PG and the
# makefiles will try to parse the correct values from the file system.
#
# Variables that specify exclusions can use % as a wildcard to specify that anything in
# that position will match. A partial path can also be specified to, for example, exclude
# a whole folder from the parsed paths from the file system
#
# Variables can be specified using = or +=
# = will clear the contents of that variable both specified from the file or the ones parsed
# from the file system
# += will add the values to the previous ones in the file or the ones parsed from the file
# system
#
# The PG can be used to detect errors in this file, just create a new project with this addon
# and the PG will write to the console the kind of error and in which line it is
meta:
ADDON_NAME = ofxGStreamer
ADDON_DESCRIPTION = openFrameworks addon to use gstreamer under osx and windows. This addon has no code and instead uses the addon_config.mk file to add the needed files from the core + the flags needed to compile using gstreamer
ADDON_AUTHOR = Arturo Castro
ADDON_TAGS = "GStreamer" "video" "audio" "network"
ADDON_URL = http://github.com/arturoc/ofxGStreamer
common:
# dependencies with other addons, a list of them separated by spaces
# or use += in several lines
# ADDON_DEPENDENCIES =
# include search paths, this will be usually parsed from the file system
# but if the addon or addon libraries need special search paths they can be
# specified here separated by spaces or one per line using +=
# ADDON_INCLUDES =
# any special flag that should be passed to the compiler when using this
# addon
# ADDON_CFLAGS =
# any special flag that should be passed to the linker when using this
# addon, also used for system libraries with -lname
# ADDON_LDFLAGS =
# linux only, any library that should be included in the project using
# pkg-config
# ADDON_PKG_CONFIG_LIBRARIES =
# osx/iOS only, any framework that should be included in the project
# ADDON_FRAMEWORKS
# source files, these will be usually parsed from the file system looking
# in the src folders in libs and the root of the addon. if your addon needs
# to include files in different places or a different set of files per platform
# they can be specified here
# ADDON_SOURCES =
# some addons need resources to be copied to the bin/data folder of the project
# specify here any files that need to be copied, you can use wildcards like * and ?
# ADDON_DATA =
# when parsing the file system looking for libraries exclude this for all or
# a specific platform
# ADDON_LIBS_EXCLUDE =
# when parsing the file system looking for sources exclude this for all or
# a specific platform
# when parsing the file system looking for include paths exclude this for all or
# a specific platform
# ADDON_INCLUDES_EXCLUDE =
linux:
linux64:
linuxarmv6l:
linuxarmv7l:
msys2:
#ADDON_INCLUDES += $(GSTREAMER_1_0_ROOT_MINGW_X86_64)include
#ADDON_INCLUDES += $(GSTREAMER_1_0_ROOT_MINGW_X86_64)include/gstreamer-1.0
#ADDON_INCLUDES += $(GSTREAMER_1_0_ROOT_MINGW_X86_64)include/glib-2.0
#ADDON_INCLUDES += $(GSTREAMER_1_0_ROOT_MINGW_X86_64)lib/glib-2.0/include
ADDON_SOURCES += $(OF_ROOT)/libs/openFrameworks/video/ofGstUtils.h
ADDON_SOURCES += $(OF_ROOT)/libs/openFrameworks/video/ofGstUtils.cpp
ADDON_SOURCES += $(OF_ROOT)/libs/openFrameworks/video/ofGstVideoPlayer.h
ADDON_SOURCES += $(OF_ROOT)/libs/openFrameworks/video/ofGstVideoPlayer.cpp
ADDON_SOURCES += $(OF_ROOT)/libs/openFrameworks/video/ofGstVideoGrabber.h
ADDON_SOURCES += $(OF_ROOT)/libs/openFrameworks/video/ofGstVideoGrabber.cpp
#ADDON_LDFLAGS += -L$(GSTREAMER_1_0_ROOT_MINGW_X86_64)lib -lgstreamer-1.0 -lgstapp-1.0 -lgstvideo-1.0 -lgstbase-1.0 -lgstnet-1.0 -lgstaudio-1.0 -lgio-2.0 -lpangowin32-1.0 -lgdi32 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lpango-1.0 -lcairo -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lffi -lws2_32 -lole32 -lwinmm -lshlwapi -lintl -lglib-2.0
ADDON_PKG_CONFIG_LIBRARIES = gstreamer-1.0 gstreamer-app-1.0 gstreamer-video-1.0
vs:
ADDON_INCLUDES += $(GSTREAMER_1_0_ROOT_MSVC_X86_64)include
ADDON_INCLUDES += $(GSTREAMER_1_0_ROOT_MSVC_X86_64)include/gstreamer-1.0
ADDON_INCLUDES += $(GSTREAMER_1_0_ROOT_MSVC_X86_64)include/glib-2.0
ADDON_INCLUDES += $(GSTREAMER_1_0_ROOT_MSVC_X86_64)lib/glib-2.0/include
ADDON_INCLUDES += $(GSTREAMER_1_0_ROOT_MSVC_X86_64)lib/gstreamer-1.0/include
ADDON_SOURCES += $(OF_ROOT)/libs/openFrameworks/video/ofGstUtils.h
ADDON_SOURCES += $(OF_ROOT)/libs/openFrameworks/video/ofGstUtils.cpp
ADDON_SOURCES += $(OF_ROOT)/libs/openFrameworks/video/ofGstVideoPlayer.h
ADDON_SOURCES += $(OF_ROOT)/libs/openFrameworks/video/ofGstVideoPlayer.cpp
ADDON_SOURCES += $(OF_ROOT)/libs/openFrameworks/video/ofGstVideoGrabber.h
ADDON_SOURCES += $(OF_ROOT)/libs/openFrameworks/video/ofGstVideoGrabber.cpp
ADDON_LIBS += $(GSTREAMER_1_0_ROOT_MSVC_X86_64)lib/gstreamer-1.0.lib $(GSTREAMER_1_0_ROOT_MSVC_X86_64)lib/gstapp-1.0.lib $(GSTREAMER_1_0_ROOT_MSVC_X86_64)lib/gstvideo-1.0.lib $(GSTREAMER_1_0_ROOT_MSVC_X86_64)lib/gstbase-1.0.lib $(GSTREAMER_1_0_ROOT_MSVC_X86_64)lib/gstnet-1.0.lib $(GSTREAMER_1_0_ROOT_MSVC_X86_64)lib/gstaudio-1.0.lib $(GSTREAMER_1_0_ROOT_MSVC_X86_64)lib/gio-2.0.lib $(GSTREAMER_1_0_ROOT_MSVC_X86_64)lib/pangowin32-1.0.lib $(GSTREAMER_1_0_ROOT_MSVC_X86_64)lib/pangocairo-1.0.lib $(GSTREAMER_1_0_ROOT_MSVC_X86_64)lib/gdk_pixbuf-2.0.lib $(GSTREAMER_1_0_ROOT_MSVC_X86_64)lib/pango-1.0.lib $(GSTREAMER_1_0_ROOT_MSVC_X86_64)lib/cairo.lib $(GSTREAMER_1_0_ROOT_MSVC_X86_64)lib/gobject-2.0.lib $(GSTREAMER_1_0_ROOT_MSVC_X86_64)lib/gmodule-2.0.lib $(GSTREAMER_1_0_ROOT_MSVC_X86_64)lib/gthread-2.0.lib $(GSTREAMER_1_0_ROOT_MSVC_X86_64)lib/ffi.lib $(GSTREAMER_1_0_ROOT_MSVC_X86_64)lib/intl.lib $(GSTREAMER_1_0_ROOT_MSVC_X86_64)lib/glib-2.0.lib
android/armeabi:
android/armeabi-v7a:
osx:
ADDON_LDFLAGS = -F/Library/Frameworks -framework GStreamer
ADDON_LDFLAGS += -L/Library/Frameworks/GStreamer.framework/Libraries
ADDON_INCLUDES += /Library/Frameworks/GStreamer.framework/Headers
ADDON_SOURCES += $(OF_ROOT)/libs/openFrameworks/video/ofGstUtils.h
ADDON_SOURCES += $(OF_ROOT)/libs/openFrameworks/video/ofGstUtils.cpp
ADDON_SOURCES += $(OF_ROOT)/libs/openFrameworks/video/ofGstVideoPlayer.h
ADDON_SOURCES += $(OF_ROOT)/libs/openFrameworks/video/ofGstVideoPlayer.cpp
ADDON_SOURCES += $(OF_ROOT)/libs/openFrameworks/video/ofGstVideoGrabber.h
ADDON_SOURCES += $(OF_ROOT)/libs/openFrameworks/video/ofGstVideoGrabber.cpp
ios:
ADDON_LDFLAGS = -F/Library/Frameworks -framework GStreamer
ADDON_INCLUDES = /Library/Frameworks/GStreamer.framework/Headers
ADDON_SOURCES += $(OF_ROOT)/libs/openFrameworks/video/ofGstUtils.h
ADDON_SOURCES += $(OF_ROOT)/libs/openFrameworks/video/ofGstUtils.cpp
ADDON_SOURCES += $(OF_ROOT)/libs/openFrameworks/video/ofGstVideoPlayer.h
ADDON_SOURCES += $(OF_ROOT)/libs/openFrameworks/video/ofGstVideoPlayer.cpp
ADDON_SOURCES += $(OF_ROOT)/libs/openFrameworks/video/ofGstVideoGrabber.h
ADDON_SOURCES += $(OF_ROOT)/libs/openFrameworks/video/ofGstVideoGrabber.cpp