2003-12-12 Hans Breuer <hans@breuer.org> [ I've postponed my reservations against pangoft2/fontconfig/freetype2 usage, so The Gimp should now build with msvc without patching it. ] * app/makefile.msc app/text/makefile.msc : use $(PANGOFT2_CFLAGS) etc. * libgimpthumb/makefile.msc : (new file) * makefile.msc : added libgimpthumb * libgimpthumb/gimpthumbnail.c : include gimpwin32-io.h * libgimpthumb/gimpthumb-utils.c : don't compare size pointer with GIMP_THUMB_SIZE_FAIL but *size * plug-ins/makefile.msc : handle libgimpoldpreview * plug-ins/common/decompose.c : define cbrt() if not __GLIBC__ * plug-ins/common/winclipboard.c : make it compile without gimpcompat.h * plug-ins/imagemap/imagemap_csim_lex.c : its a generated file but still win32/msvc has no unistd.h * plug-ins/pygimp/makefile.msc : (new file) to use the binary you need to patch glib, see bug #98737 * plug-ins/libgimpoldpreview.c : use <libgimp/gimp.h> instead of "gimp.h" * **/Makefile.am : added makefile.msc to EXTRA_DIST
81 lines
1.7 KiB
Makefile
81 lines
1.7 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
noinst_LIBRARIES = libappconfig.a
|
|
|
|
libappconfig_a_SOURCES = \
|
|
config-types.h \
|
|
gimpconfig.c \
|
|
gimpconfig.h \
|
|
gimpconfig-deserialize.c \
|
|
gimpconfig-deserialize.h \
|
|
gimpconfig-dump.c \
|
|
gimpconfig-dump.h \
|
|
gimpconfig-error.c \
|
|
gimpconfig-error.h \
|
|
gimpconfig-params.c \
|
|
gimpconfig-params.h \
|
|
gimpconfig-path.c \
|
|
gimpconfig-path.h \
|
|
gimpconfig-serialize.c \
|
|
gimpconfig-serialize.h \
|
|
gimpconfig-serialize.h \
|
|
gimpconfig-types.c \
|
|
gimpconfig-types.h \
|
|
gimpconfig-utils.c \
|
|
gimpconfig-utils.h \
|
|
gimpconfigwriter.c \
|
|
gimpconfigwriter.h \
|
|
gimpbaseconfig.c \
|
|
gimpbaseconfig.h \
|
|
gimpcoreconfig.c \
|
|
gimpcoreconfig.h \
|
|
gimpdisplayconfig.c \
|
|
gimpdisplayconfig.h \
|
|
gimpguiconfig.c \
|
|
gimpguiconfig.h \
|
|
gimppluginconfig.c \
|
|
gimppluginconfig.h \
|
|
gimprc.c \
|
|
gimprc.h \
|
|
gimprc-blurbs.h \
|
|
gimpscanner.c \
|
|
gimpscanner.h \
|
|
gimpxmlparser.c \
|
|
gimpxmlparser.h
|
|
|
|
AM_CPPFLAGS = \
|
|
-DG_LOG_DOMAIN=\"Gimp-Config\" \
|
|
@GIMP_THREAD_FLAGS@ \
|
|
@GIMP_MP_FLAGS@
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/app \
|
|
$(GLIB_CFLAGS) \
|
|
$(GDK_PIXBUF_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
|
|
EXTRA_PROGRAMS = test-config
|
|
|
|
EXTRA_DIST = makefile.msc
|
|
|
|
#
|
|
# unit tests for the GimpConfig system
|
|
#
|
|
|
|
TESTS = test-config
|
|
|
|
test_config_DEPENDENCIES = $(gimpconfig_libs)
|
|
|
|
test_config_LDADD = \
|
|
../base/libappbase.a \
|
|
../core/libappcore.a \
|
|
libappconfig.a \
|
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
|
$(top_builddir)/libgimpmath/libgimpmath-$(LT_RELEASE).la \
|
|
$(GLIB_LIBS)
|
|
|
|
|
|
CLEANFILES = $(EXTRA_PROGRAMS) foorc
|