Skip to content

Commit 38ce553

Browse files
committed
config file and thumbnail
1 parent 90cdac9 commit 38ce553

File tree

2 files changed

+71
-0
lines changed

2 files changed

+71
-0
lines changed

addon_config.mk

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
# All variables and this file are optional, if they are not present the PG and the
2+
# makefiles will try to parse the correct values from the file system.
3+
#
4+
# Variables that specify exclusions can use % as a wildcard to specify that anything in
5+
# that position will match. A partial path can also be specified to, for example, exclude
6+
# a whole folder from the parsed paths from the file system
7+
#
8+
# Variables can be specified using = or +=
9+
# = will clear the contents of that variable both specified from the file or the ones parsed
10+
# from the file system
11+
# += will add the values to the previous ones in the file or the ones parsed from the file
12+
# system
13+
#
14+
# The PG can be used to detect errors in this file, just create a new project with this addon
15+
# and the PG will write to the console the kind of error and in which line it is
16+
17+
meta:
18+
ADDON_NAME = ofxLibtins
19+
ADDON_DESCRIPTION = ANetwork packet sniffing and crafting wrapper based on the libtins library.
20+
ADDON_AUTHOR = Jonas Jongejan
21+
ADDON_TAGS = "network"
22+
ADDON_URL = http://github.com/HalfdanJ/ofxLibtins
23+
24+
common:
25+
# dependencies with other addons, a list of them separated by spaces
26+
# or use += in several lines
27+
# ADDON_DEPENDENCIES =
28+
29+
# include search paths, this will be usually parsed from the file system
30+
# but if the addon or addon libraries need special search paths they can be
31+
# specified here separated by spaces or one per line using +=
32+
# ADDON_INCLUDES =
33+
34+
# any special flag that should be passed to the compiler when using this
35+
# addon
36+
# ADDON_CFLAGS =
37+
38+
# any special flag that should be passed to the linker when using this
39+
# addon, also used for system libraries with -lname
40+
# ADDON_LDFLAGS =
41+
42+
# linux only, any library that should be included in the project using
43+
# pkg-config
44+
# ADDON_PKG_CONFIG_LIBRARIES =
45+
46+
# osx/iOS only, any framework that should be included in the project
47+
# ADDON_FRAMEWORKS =
48+
49+
# source files, these will be usually parsed from the file system looking
50+
# in the src folders in libs and the root of the addon. if your addon needs
51+
# to include files in different places or a different set of files per platform
52+
# they can be specified here
53+
# ADDON_SOURCES =
54+
55+
# some addons need resources to be copied to the bin/data folder of the project
56+
# specify here any files that need to be copied, you can use wildcards like * and ?
57+
# ADDON_DATA =
58+
59+
# when parsing the file system looking for libraries exclude this for all or
60+
# a specific platform
61+
# ADDON_LIBS_EXCLUDE =
62+
63+
# when parsing the file system looking for sources exclude this for all or
64+
# a specific platform
65+
# ADDON_SOURCES_EXCLUDE =
66+
67+
# when parsing the file system looking for include paths exclude this for all or
68+
# a specific platform
69+
# ADDON_INCLUDES_EXCLUDE =
70+
71+

ofxaddons_thumbnail.png

75.7 KB
Loading

0 commit comments

Comments
 (0)