Changeset 3 for trunk/tests/Makefile.am

Show
Ignore:
Timestamp:
04/10/06 08:03:25 (3 years ago)
Author:
jordi
Message:

Now the test directory is added to the list of subdirectories only if the tests are enabled (i.e., configure found CPPUnit).

Added the GNU General Public License in COPYING.

Created the initial test suite that gets all tests and run them outputting the errors in a compiler-like fashion (compiler outputter). No suite created yet.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/tests/Makefile.am

    r2 r3  
    11# Process this file with automake to produce a Makefile.in file. 
     2TESTS=test_epdfview 
     3noinst_PROGRAMS=test_epdfview 
    24 
     5test_epdfview_SOURCES =     \ 
     6    main.cxx 
     7 
     8test_epdfview_CXXFLAGS =    \ 
     9    -I$(top_srcdir)/src     \ 
     10    $(GLIB_CFLAGS)          \ 
     11    $(CPPUNIT_CFLAGS) 
     12 
     13test_epdfview_LDFLAGS =     \ 
     14    $(GLIB_LIBS)            \ 
     15    $(CPPUNIT_LIBS)