This repository has been archived by the owner on Aug 8, 2023. It is now read-only.
forked from YCAMInterlab/ofxTimeline
-
Notifications
You must be signed in to change notification settings - Fork 6
/
addon_config.mk
79 lines (65 loc) · 3 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
meta:
ADDON_NAME = ofxTimeline
ADDON_DESCRIPTION = ofxTimeline is a simple to use openFrameworks add on for creating a user interface to an editable timeline.
ADDON_AUTHOR = James George
ADDON_TAGS = time timeline curves keyframes
ADDON_URL = http://github.com/obviousjim/ofxTimeline
common:
# dependencies with other addons, a list of them separated by spaces
# or use += in several lines
ADDON_DEPENDENCIES = ofxXmlSettings
ADDON_DEPENDENCIES += ofxTween
ADDON_DEPENDENCIES += ofxRange
ADDON_DEPENDENCIES += ofxMSATimer
ADDON_DEPENDENCIES += ofxTimecode
ADDON_DEPENDENCIES += ofxTextInputField
# 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 =
# binary libraries, these will be usually parsed from the file system but some
# libraries need to passed to the linker in a specific order
# ADDON_LIBS =
# 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 = copy_to_data_GUI/*
linux64:
# when parsing the file system looking for libraries exclude this for all or
# a specific platform
ADDON_LIBS_EXCLUDE = libs/kiss
ADDON_LIBS_EXCLUDE = libs/ofOpenALSoundPlayer_TimelineAdditions
ADDON_SOURCES_EXCLUDE = libs/ofOpenALSoundPlayer_TimelineAdditions/%
ADDON_INCLUDES_EXCLUDE = libs/ofOpenALSoundPlayer_TimelineAdditions/%
linux:
ADDON_LIBS_EXCLUDE = libs/kiss
ADDON_LIBS_EXCLUDE = libs/ofOpenALSoundPlayer_TimelineAdditions
ADDON_SOURCES_EXCLUDE = libs/ofOpenALSoundPlayer_TimelineAdditions/%
ADDON_INCLUDES_EXCLUDE = libs/ofOpenALSoundPlayer_TimelineAdditions/%
linuxarmv6l:
ADDON_LIBS_EXCLUDE = libs/kiss
ADDON_LIBS_EXCLUDE = libs/ofOpenALSoundPlayer_TimelineAdditions
ADDON_SOURCES_EXCLUDE = libs/ofOpenALSoundPlayer_TimelineAdditions/%
ADDON_INCLUDES_EXCLUDE = libs/ofOpenALSoundPlayer_TimelineAdditions/%
linuxarmv7l:
ADDON_LIBS_EXCLUDE = libs/kiss
ADDON_LIBS_EXCLUDE = libs/ofOpenALSoundPlayer_TimelineAdditions
ADDON_SOURCES_EXCLUDE = libs/ofOpenALSoundPlayer_TimelineAdditions/%
ADDON_INCLUDES_EXCLUDE = libs/ofOpenALSoundPlayer_TimelineAdditions/%
osx:
vs: