|
Revision 237, 1.2 kB
(checked in by jordi, 2 years ago)
|
|
Updated the THANKS files. Probably I forget someone, but it's late ;-)
|
| Line | |
|---|
| 1 | # Process this file with automake to produce a Makefile.in file. |
|---|
| 2 | TESTS=test_epdfview |
|---|
| 3 | noinst_PROGRAMS=test_epdfview |
|---|
| 4 | EXTRA_DIST = \ |
|---|
| 5 | test1.pdf \ |
|---|
| 6 | test2.pdf \ |
|---|
| 7 | test_encrypted.pdf |
|---|
| 8 | |
|---|
| 9 | test_epdfview_SOURCES = \ |
|---|
| 10 | ConfigTest.cxx \ |
|---|
| 11 | ConfigTest.h \ |
|---|
| 12 | DocumentOutlineTest.cxx \ |
|---|
| 13 | DocumentOutlineTest.h \ |
|---|
| 14 | DumbDocument.cxx \ |
|---|
| 15 | DumbDocument.h \ |
|---|
| 16 | DumbDocumentObserver.cxx \ |
|---|
| 17 | DumbDocumentObserver.h \ |
|---|
| 18 | DumbFindView.cxx \ |
|---|
| 19 | DumbFindView.h \ |
|---|
| 20 | DumbMainView.cxx \ |
|---|
| 21 | DumbMainView.h \ |
|---|
| 22 | DumbPageView.cxx \ |
|---|
| 23 | DumbPageView.h \ |
|---|
| 24 | DumbPreferencesView.cxx \ |
|---|
| 25 | DumbPreferencesView.h \ |
|---|
| 26 | FindPterTest.cxx \ |
|---|
| 27 | FindPterTest.h \ |
|---|
| 28 | main.cxx \ |
|---|
| 29 | MainPterTest.cxx \ |
|---|
| 30 | MainPterTest.h \ |
|---|
| 31 | PagePterTest.cxx \ |
|---|
| 32 | PagePterTest.h \ |
|---|
| 33 | PDFDocumentTest.cxx \ |
|---|
| 34 | PDFDocumentTest.h \ |
|---|
| 35 | PreferencesPterTest.cxx \ |
|---|
| 36 | PreferencesPterTest.h \ |
|---|
| 37 | Utils.cxx \ |
|---|
| 38 | Utils.h |
|---|
| 39 | |
|---|
| 40 | |
|---|
| 41 | test_epdfview_CXXFLAGS = \ |
|---|
| 42 | -DTEST_DIR='"$(top_srcdir)/tests/"' \ |
|---|
| 43 | -I$(top_srcdir)/src \ |
|---|
| 44 | $(GLIB_CFLAGS) \ |
|---|
| 45 | $(CPPUNIT_CFLAGS) |
|---|
| 46 | |
|---|
| 47 | test_epdfview_LDADD = \ |
|---|
| 48 | $(GLIB_LIBS) \ |
|---|
| 49 | $(POPPLER_LIBS) \ |
|---|
| 50 | $(CPPUNIT_LIBS) \ |
|---|
| 51 | $(top_builddir)/src/libepdfview.a |
|---|
| 52 | |
|---|
| 53 | if cups_printing |
|---|
| 54 | test_epdfview_SOURCES += \ |
|---|
| 55 | DumbPrintView.cxx \ |
|---|
| 56 | DumbPrintView.h \ |
|---|
| 57 | PrintPterTest.cxx \ |
|---|
| 58 | PrintPterTest.h |
|---|
| 59 | |
|---|
| 60 | test_epdfview_CXXFLAGS += \ |
|---|
| 61 | $(CUPS_CFLAGS) |
|---|
| 62 | |
|---|
| 63 | test_epdfview_LDADD += \ |
|---|
| 64 | $(CUPS_LIBS) |
|---|
| 65 | endif |
|---|