Skip to content

Commit 2495246

Browse files
Merge pull request #3 from mattfelsen/0.9.0
Update addon_config.mk, remove extraneous info
2 parents baeea35 + dc2aa09 commit 2495246

File tree

1 file changed

+0
-77
lines changed

1 file changed

+0
-77
lines changed

addon_config.mk

-77
Original file line numberDiff line numberDiff line change
@@ -6,74 +6,13 @@ meta:
66
ADDON_URL = https://github.com/robotconscience/ofxTurboJpeg
77

88
common:
9-
# dependencies with other addons, a list of them separated by spaces
10-
# or use += in several lines
11-
ADDON_DEPENDENCIES =
12-
13-
# include search paths, this will be usually parsed from the file system
14-
# but if the addon or addon libraries need special search paths they can be
15-
# specified here separated by spaces or one per line using +=
169
ADDON_INCLUDES = src/
1710
ADDON_INCLUDES += libs/turbo-jpeg/include
1811

19-
# any special flag that should be passed to the compiler when using this
20-
# addon
21-
ADDON_CFLAGS =
22-
23-
# any special flag that should be passed to the linker when using this
24-
# addon, also used for system libraries with -lname
25-
ADDON_LDFLAGS =
26-
27-
# linux only, any library that should be included in the project using
28-
# pkg-config
29-
ADDON_PKG_CONFIG_LIBRARIES =
30-
31-
# osx/iOS only, any framework that should be included in the project
32-
ADDON_FRAMEWORKS =
33-
34-
# source files, these will be usually parsed from the file system looking
35-
# in the src folders in libs and the root of the addon. if your addon needs
36-
# to include files in different places or a different set of files per platform
37-
# they can be specified here
3812
ADDON_SOURCES = src/ofxTurboJpeg.h
3913
ADDON_SOURCES += src/ofxTurboJpeg.cpp
4014

41-
# some addons need resources to be copied to the bin/data folder of the project
42-
# specify here any files that need to be copied, you can use wildcards like * and ?
43-
ADDON_DATA =
44-
45-
# when parsing the file system looking for libraries exclude this for all or
46-
# a specific platform
47-
ADDON_LIBS_EXCLUDE =
48-
49-
linux64:
50-
# binary libraries, these will be usually parsed from the file system but some
51-
# libraries need to passed to the linker in a specific order
52-
#nothing yet
53-
54-
linux:
55-
#nothing yet
56-
57-
win_cb:
58-
#nothing yet
59-
6015
vs:
61-
# source files, these will be usually parsed from the file system looking
62-
# in the src folders in libs and the root of the addon. if your addon needs
63-
# to include files in different places or a different set of files per platform
64-
# they can be specified here
65-
ADDON_SOURCES +=
66-
67-
# include search paths, this will be usually parsed from the file system
68-
# but if the addon or addon libraries need special search paths they can be
69-
# specified here separated by spaces or one per line using +=
70-
ADDON_INCLUDES +=
71-
72-
73-
# when parsing the file system looking for include paths exclude this for all or
74-
# a specific platform
75-
ADDON_INCLUDES_EXCLUDE
76-
7716
# These should get automatically set up by the projectGenerator. If you're adding
7817
# to a project manually, use the following pattern:
7918
# Win32/Debug
@@ -84,19 +23,3 @@ vs:
8423
# ADDON_LIBS = libs/libwebsockets/lib/vs/x64/Debug/turbojpeg-static.lib
8524
# x64/Release
8625
# ADDON_LIBS = libs/libwebsockets/lib/vs/x64/Release/turbojpeg-static.lib
87-
88-
linuxarmv6l:
89-
ADDON_LDFLAGS =
90-
ADDON_LIBS =
91-
linuxarmv7l:
92-
#nothing yet
93-
94-
android/armeabi:
95-
#nothing yet
96-
97-
android/armeabi-v7a:
98-
#nothing yet
99-
100-
osx:
101-
ADDON_DATA = libs/turbo-jpeg/lib/osx/libturbojpeg.dylib
102-
ADDON_LDFLAGS = ../../../addons/ofxTurboJpeg/libs/turbo-jpeg/lib/osx/libturbojpeg.dylib

0 commit comments

Comments
 (0)