mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
435a566751
* sumatrapdf - vendor import * everything compiles (libjpeg, poppler, fitz, sumatrapdf) * does NOT link (remove the comment tags in the parent directory.rbuild file (rosapps dir) to build it) svn path=/trunk/; revision=29295
69 lines
1.3 KiB
Makefile
69 lines
1.3 KiB
Makefile
if BUILD_GTK_TEST
|
|
|
|
if BUILD_SPLASH_OUTPUT
|
|
|
|
gtk_splash_test = \
|
|
gtk-splash-test
|
|
|
|
splash_includes = \
|
|
-I$(top_srcdir)/splash
|
|
|
|
endif
|
|
|
|
if BUILD_CAIRO_OUTPUT
|
|
|
|
gtk_cairo_test = \
|
|
gtk-cairo-test
|
|
|
|
pdf_inspector = \
|
|
pdf_inspector
|
|
|
|
cairo_includes = \
|
|
$(CAIRO_CFLAGS) \
|
|
$(FREETYPE_CFLAGS)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/poppler \
|
|
-I$(top_srcdir)/glib \
|
|
-I$(top_builddir)/glib \
|
|
$(cairo_includes) \
|
|
$(GTK_TEST_CFLAGS) \
|
|
$(FONTCONFIG_CFLAGS)
|
|
|
|
noinst_PROGRAMS = $(gtk_splash_test) $(gtk_cairo_test) $(pdf_inspector)
|
|
|
|
gtk_splash_test_SOURCES = \
|
|
gtk-splash-test.cc
|
|
|
|
gtk_splash_test_LDADD = \
|
|
$(top_builddir)/poppler/libpoppler.la \
|
|
$(GTK_TEST_LIBS)
|
|
|
|
gtk_cairo_test_SOURCES = \
|
|
gtk-cairo-test.cc
|
|
|
|
gtk_cairo_test_LDADD = \
|
|
$(top_builddir)/poppler/libpoppler.la \
|
|
$(top_builddir)/glib/libpoppler-glib.la \
|
|
$(CAIRO_LIBS) \
|
|
$(GTK_TEST_LIBS) \
|
|
$(FONTCONFIG_LIBS)
|
|
|
|
pdf_inspector_SOURCES = \
|
|
pdf-inspector.cc
|
|
|
|
pdf_inspector_LDADD = \
|
|
$(top_builddir)/poppler/libpoppler.la \
|
|
$(top_builddir)/poppler/libpoppler-cairo.la \
|
|
$(CAIRO_LIBS) \
|
|
$(FREETYPE_LIBS) \
|
|
$(GTK_TEST_LIBS)
|
|
|
|
EXTRA_DIST = \
|
|
pdf-operators.c
|