-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathaddon_config.mk
executable file
·34 lines (27 loc) · 1.05 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
meta:
ADDON_NAME = ofxTurboJpeg
ADDON_DESCRIPTION = OF wrapper for turbo-jpeg
ADDON_AUTHOR = Oriol Ferrer Mesià, Satoru Higa, Brett Renfer
ADDON_TAGS = "jpeg" "turboJPEG" "binary" "image"
ADDON_URL = https://github.com/robotconscience/ofxTurboJpeg
osx:
ADDON_INCLUDES = src/
ADDON_INCLUDES += libs/turbo-jpeg/include
ADDON_SOURCES = src/ofxTurboJpeg.h
ADDON_SOURCES += src/ofxTurboJpeg.cpp
linux64:
ADDON_LDFLAGS = -lturbojpeg
linuxarmv7l:
ADDON_LIBS = libs/turbo-jpeg/lib/linuxarmv7l/libjpeg.a
ADDON_LIBS += libs/turbo-jpeg/lib/linuxarmv7l/libturbojpeg.a
vs:
# These should get automatically set up by the projectGenerator. If you're adding
# to a project manually, use the following pattern:
# Win32/Debug
# ADDON_LIBS = libs/libwebsockets/lib/vs/Win32/Debug/turbojpeg-static.lib
# Win32/Release
# ADDON_LIBS = libs/libwebsockets/lib/vs/Win32/Release/turbojpeg-static.lib
# x64/Debug
# ADDON_LIBS = libs/libwebsockets/lib/vs/x64/Debug/turbojpeg-static.lib
# x64/Release
# ADDON_LIBS = libs/libwebsockets/lib/vs/x64/Release/turbojpeg-static.lib