- Change the wire protocol's GPProcInstall to transmit the entire information needed for constructing all GParamSpecs we use, don't use GimpPDBArgType in GPProcInstall but an enum private to the wire protocol plus the GParamSpec's GType name. Bump the wire protocol version. - Add gimpgpparamspecs.[ch] in both app/plug-in/ and libgimp/ which take care of converting between GPParamDef and GParamSpec. They share code as far as possible. - Change pluginrc writing and parsing to re-use GPParamDef and the utility functions from gimpgpparamspecs. - Remove gimp_pdb_compat_param_spec() from app/pdb/gimp-pdb-compat.[ch], the entire core uses proper GParamSpecs from the wire protocol now, the whole file will follow down the drain once we use a GValue representation on the wire too. - In gimp_plug_in_handle_proc_install(), change the "run-mode" parameter to a GParamSpecEnum(GIMP_TYPE_RUN_MODE) (if it is not already an enum). and change all places in app/ to treat it as an enum value. - plug-ins: fix cml-explorer to register correctly, a typo in "run-mode" was never noticed until now. - Add gimpgpcompat.[ch] in libgimp to deal with all the transforms between old-style wire communication and using GParamSpec and GValue, it contains some functions that are subject to change or even removal in the next steps. - Change the libgimp GimpProcedure and GimpPlugIn in many ways to be able to actually install procedures the new way. - plug-ins: change goat-exercise to completely use the new GimpPlugIn and GimpProcedure API, look here to see how plug-ins will look in the future, of course subject to change until this is finished. - Next: changing GPParam to transmit all information about a GValue.
173 lines
5.2 KiB
Makefile
173 lines
5.2 KiB
Makefile
# Prevent parallel builds for the tests, as e.g. done by make -j check
|
|
# The tests must not be run in parallel or in a different order as specified
|
|
.NOTPARALLEL: check
|
|
|
|
if PLATFORM_OSX
|
|
xobjective_c = "-xobjective-c"
|
|
xobjective_cxx = "-xobjective-c++"
|
|
xnone = "-xnone"
|
|
endif
|
|
|
|
SUBDIRS = \
|
|
files \
|
|
gimpdir \
|
|
gimpdir-empty
|
|
|
|
# Don't mess with user's gimpdir. Pass in the abs top srcdir to the
|
|
# tests through an environment variable so they can set the gimpdir
|
|
# they want to use
|
|
TESTS_ENVIRONMENT = \
|
|
GIMP_TESTING_ABS_TOP_SRCDIR=@abs_top_srcdir@ \
|
|
GIMP_TESTING_ABS_TOP_BUILDDIR=@abs_top_builddir@ \
|
|
GIMP_TESTING_PLUGINDIRS=@abs_top_builddir@/plug-ins/common \
|
|
GIMP_TESTING_PLUGINDIRS_BASENAME_IGNORES=mkgen.pl
|
|
|
|
# Run tests with xvfb-run if available
|
|
if HAVE_XVFB_RUN
|
|
TESTS_ENVIRONMENT += $(XVFB_RUN) --auto-servernum --server-args="-screen 0 1280x1024x24"
|
|
endif
|
|
|
|
|
|
TESTS = \
|
|
test-core \
|
|
test-gimpidtable \
|
|
test-save-and-export \
|
|
test-session-2-8-compatibility-multi-window \
|
|
test-session-2-8-compatibility-single-window \
|
|
test-single-window-mode \
|
|
test-tools \
|
|
test-ui \
|
|
test-xcf
|
|
|
|
EXTRA_PROGRAMS = $(TESTS)
|
|
CLEANFILES = $(EXTRA_PROGRAMS)
|
|
|
|
$(TESTS): gimpdir-output gimp-test-icon-theme
|
|
|
|
noinst_LIBRARIES = libgimpapptestutils.a
|
|
libgimpapptestutils_a_SOURCES = \
|
|
gimp-app-test-utils.c \
|
|
gimp-app-test-utils.h \
|
|
gimp-test-session-utils.c \
|
|
gimp-test-session-utils.h
|
|
|
|
libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la
|
|
libgimpconfig = $(top_builddir)/libgimpconfig/libgimpconfig-$(GIMP_API_VERSION).la
|
|
libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la
|
|
libgimpmath = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la
|
|
libgimpmodule = $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la
|
|
libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la
|
|
libgimpthumb = $(top_builddir)/libgimpthumb/libgimpthumb-$(GIMP_API_VERSION).la
|
|
|
|
if PLATFORM_LINUX
|
|
libdl = -ldl
|
|
endif
|
|
|
|
if OS_WIN32
|
|
else
|
|
libm = -lm
|
|
endif
|
|
|
|
AM_CPPFLAGS = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/app \
|
|
$(PANGOCAIRO_CFLAGS) \
|
|
$(GTK_CFLAGS) \
|
|
$(DBUS_GLIB_CFLAGS) \
|
|
$(GEGL_CFLAGS) \
|
|
$(xobjective_c) \
|
|
-I$(includedir)
|
|
|
|
# We need this due to circular dependencies
|
|
AM_LDFLAGS = \
|
|
-Wl,-u,$(SYMPREFIX)gimp_vectors_undo_get_type \
|
|
-Wl,-u,$(SYMPREFIX)gimp_vectors_mod_undo_get_type \
|
|
-Wl,-u,$(SYMPREFIX)gimp_param_spec_duplicate \
|
|
-Wl,-u,$(SYMPREFIX)gimp_operations_init \
|
|
-Wl,-u,$(SYMPREFIX)xcf_init \
|
|
-Wl,-u,$(SYMPREFIX)internal_procs_init \
|
|
-Wl,-u,$(SYMPREFIX)gimp_plug_in_manager_restore \
|
|
-Wl,-u,$(SYMPREFIX)gimp_layer_mode_is_legacy \
|
|
-Wl,-u,$(SYMPREFIX)gui_init \
|
|
-Wl,-u,$(SYMPREFIX)gimp_tool_cursors_get_resource \
|
|
-Wl,-u,$(SYMPREFIX)gimp_lebl_dialog
|
|
|
|
# Note that we have some duplicate entries here too to work around
|
|
# circular dependencies and systems on the same architectural layer as
|
|
# an alternative to LDFLAGS above
|
|
LDADD = \
|
|
../gui/libappgui.a \
|
|
../tools/libapptools.a \
|
|
../dialogs/libappdialogs.a \
|
|
../menus/libappmenus.a \
|
|
../actions/libappactions.a \
|
|
../dialogs/libappdialogs.a \
|
|
../display/libappdisplay.a \
|
|
../propgui/libapppropgui.a \
|
|
../widgets/libappwidgets.a \
|
|
../xcf/libappxcf.a \
|
|
../pdb/libappinternal-procs.a \
|
|
../pdb/libapppdb.a \
|
|
../plug-in/libappplug-in.a \
|
|
../vectors/libappvectors.a \
|
|
../core/libappcore.a \
|
|
../file/libappfile.a \
|
|
../file-data/libappfile-data.a \
|
|
../text/libapptext.a \
|
|
../paint/libapppaint.a \
|
|
../config/libappconfig.a \
|
|
../libapp.a \
|
|
../gegl/libappgegl.a \
|
|
../operations/libappoperations.a \
|
|
../operations/layer-modes/libapplayermodes.a \
|
|
../operations/layer-modes-legacy/libapplayermodeslegacy.a \
|
|
libgimpapptestutils.a \
|
|
$(libgimpwidgets) \
|
|
$(libgimpconfig) \
|
|
$(libgimpmath) \
|
|
$(libgimpthumb) \
|
|
$(libgimpcolor) \
|
|
$(libgimpmodule) \
|
|
$(libgimpbase) \
|
|
$(GIMPICONRC) \
|
|
$(GTK_LIBS) \
|
|
$(APPSTREAM_GLIB_LIBS) \
|
|
$(GTK_MAC_INTEGRATION_LIBS) \
|
|
$(DBUS_GLIB_LIBS) \
|
|
$(GDK_PIXBUF_LIBS) \
|
|
$(FREETYPE_LIBS) \
|
|
$(FONTCONFIG_LIBS) \
|
|
$(PANGOCAIRO_LIBS) \
|
|
$(HARFBUZZ_LIBS) \
|
|
$(CAIRO_LIBS) \
|
|
$(GEGL_LIBS) \
|
|
$(GIO_LIBS) \
|
|
$(GEXIV2_LIBS) \
|
|
$(Z_LIBS) \
|
|
$(JSON_C_LIBS) \
|
|
$(LIBARCHIVE_LIBS) \
|
|
$(LIBMYPAINT_LIBS) \
|
|
$(LIBBACKTRACE_LIBS) \
|
|
$(LIBUNWIND_LIBS) \
|
|
$(INTLLIBS) \
|
|
$(RT_LIBS) \
|
|
$(libm) \
|
|
$(libdl)
|
|
|
|
gimpdir-output:
|
|
mkdir -p gimpdir-output
|
|
mkdir -p gimpdir-output/brushes
|
|
mkdir -p gimpdir-output/patterns
|
|
mkdir -p gimpdir-output/gradients
|
|
|
|
gimp-test-icon-theme:
|
|
mkdir -p $$(echo $$(find $(top_srcdir)/icons/Color -name [0-9][0-9] -type d | sed 's@.*/\([0-9][0-9]\)$$@gimp-test-icon-theme/hicolor/\1x\1@'))
|
|
for dir in $$(echo $$(find $(top_srcdir)/icons/Color/ -name [0-9][0-9] -type d | sed 's@.*/\([0-9][0-9]\)$$@\1@')); do \
|
|
(cd gimp-test-icon-theme/hicolor/$${dir}x$${dir}/ && \
|
|
$(LN_S) $(abs_top_srcdir)/icons/Color/$${dir} apps); \
|
|
done
|
|
(cd gimp-test-icon-theme/hicolor && $(LN_S) $(abs_top_srcdir)/icons/Color/index.theme index.theme)
|
|
|
|
clean-local:
|
|
rm -rf gimpdir-output
|
|
rm -fr gimp-test-icon-theme
|