9c38eead46
* clutter/clutter-json.h: Header for including the JSON parsing and data types. * clutter/json/json-types.h: Add JSON_NODE_VALUE_TYPE() macro. * clutter/json/Makefile.am: Install the JSON headers into a private location. This might change in the future, and might also cause collisions if you're using JSON-GLib and Clutter at the same time, so be warned.
29 lines
536 B
Makefile
29 lines
536 B
Makefile
source_c = \
|
|
json-array.c \
|
|
json-generator.c \
|
|
json-marshal.c \
|
|
json-node.c \
|
|
json-object.c \
|
|
json-parser.c
|
|
|
|
source_h = \
|
|
json-generator.h \
|
|
json-glib.h \
|
|
json-marshal.h \
|
|
json-parser.h \
|
|
json-types.h
|
|
|
|
noinst_LTLIBRARIES = libclutter-json.la
|
|
|
|
libclutter_json_la_SOURCES = $(source_c) $(source_h)
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-DG_DISABLE_DEPRECATED \
|
|
$(GCC_FLAGS) \
|
|
$(CLUTTER_CFLAGS) \
|
|
$(CLUTTER_DEBUG_CFLAGS)
|
|
|
|
clutterjsondir = $(includedir)/clutter-@CLUTTER_MAJORMINOR@/clutter/json
|
|
clutterjson_HEADERS = $(source_h)
|