grim/purple-spasm

255ea8d6611e
Initial basic support for using the rest api
#!/usr/bin/make -f
PIDGIN_TREE_TOP ?= ../pidgin-2.12.0
WIN32_DEV_TOP ?= $(PIDGIN_TREE_TOP)/../win32-dev
PLUGIN_NAME := purple-spasm
PLUGIN_VERSION := 0.0.1
PLUGIN_CFLAGS := \
$(shell pkg-config --cflags json-glib-1.0) \
$(shell pkg-config --cflags libsoup-2.4)
PLUGIN_LIBS := \
$(shell pkg-config --libs json-glib-1.0) \
$(shell pkg-config --libs libsoup-2.4)
PLUGIN_SOURCES := \
spasm.c \
spasm-account.c \
spasm-auth.c \
spasm-rest.c \
spasm-user.c
PLUGIN_HEADERS := \
spasm-account.h \
spasm-auth.h \
spasm-const.h \
spasm-rest.h \
spasm-user.h
include libpurple.mk