~3v1n0/frame/gcc5-rebuild

« back to all changes in this revision

Viewing changes to test/Makefile.am

  • Committer: Daniel d'Andrada
  • Date: 2012-11-27 12:48:29 UTC
  • mfrom: (102.1.5 lp1080819)
  • Revision ID: daniel.dandrada@canonical.com-20121127124829-3fav4qcvcdqgffoj
Building the X11 backend is now optional

Frame must still be available and useful in platforms that doesn't have X11.
In such cases frame_backend.h is used.

configure script output has also been embellished

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
SUBDIRS = gtest x11_mocks regular
2
 
 
 
1
SUBDIRS = gtest
 
2
 
 
3
if HAVE_XINPUT
 
4
SUBDIRS += x11_mocks
 
5
endif
 
6
 
 
7
SUBDIRS += regular
 
8
 
 
9
# integration tests are all X11 based
 
10
if HAVE_XINPUT
3
11
if ENABLE_INTEGRATION_TESTS
4
12
SUBDIRS += integration
5
13
endif
 
14
endif