diff options
author | Hans Breuer <hans@breuer.org> | 2005-02-07 20:22:05 +0000 |
---|---|---|
committer | Hans Breuer <hans@src.gnome.org> | 2005-02-07 20:22:05 +0000 |
commit | 4c1cab8dff511c795e382e9ac7afaf4272c36486 (patch) | |
tree | 40d2937de3498d97ac6257d6bca5112693f90349 /tests/makefile.msc | |
parent | c0454cf6dbdb4450e894cc7a737285be33232219 (diff) | |
download | gtk+-4c1cab8dff511c795e382e9ac7afaf4272c36486.tar.gz |
build with Cairo dependency. The patch to acually use Cairo on win32 will
2005-02-05 Hans Breuer <hans@breuer.org>
* gdk/makefile.msc gdk/win32/makefile.msc gtk/makefile.msc.in :
build with Cairo dependency. The patch to acually use Cairo
on win32 will be on gtk-devel-list soon.
* tests/makefile.msc : add testcairo building
* gtk/stock-icons/makefile.msc : split command line into two to
work with the shells default
Diffstat (limited to 'tests/makefile.msc')
-rw-r--r-- | tests/makefile.msc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/makefile.msc b/tests/makefile.msc index bc469cbaad..39d31afc8c 100644 --- a/tests/makefile.msc +++ b/tests/makefile.msc @@ -18,7 +18,7 @@ GTK_LIBS = ../gtk/gtk-win32-$(GTK_VER).lib GDK_PIXBUF_LIBS = ../gdk-pixbuf/gdk_pixbuf-$(GDK_PIXBUF_VER).lib INCLUDES = -I . -I .. -I ../gdk -I ../gdk-pixbuf -I ../gtk -DEPCFLAGS = $(PANGO_CFLAGS) $(GLIB_CFLAGS) $(LIBICONV_CFLAGS) $(INTL_CFLAGS) $(ATK_CFLAGS) +DEPCFLAGS = $(PANGO_CFLAGS) $(GLIB_CFLAGS) $(LIBICONV_CFLAGS) $(INTL_CFLAGS) $(ATK_CFLAGS) $(CAIRO_CFLAGS) LDFLAGS = /link /machine:ix86 $(LINKDEBUG) DEFINES = -DG_LOG_DOMAIN=\"GtkTest\" -DGTK_VERSION=\"$(GTK_VER)\" @@ -40,7 +40,7 @@ all : \ # TESTAPPS = \ testabi testactions \ - testcalendar testcombo testcombochange \ + testcairo testcalendar testcombo testcombochange \ testdnd \ testentrycompletion \ testfilechooser \ @@ -68,6 +68,10 @@ one-test-app: !ELSE +!IFDEF EXTRA_testcairo +EXTRA_LIBS = $(CAIRO_LIBS) +!ENDIF + !IFDEF EXTRA_testgtk EXTRA_OBJETCS = prop-editor.obj !ENDIF |