summaryrefslogtreecommitdiff
path: root/trunk/tests/cxx-test.C
blob: 62099b3b24c7346beb22efe66110b4277f467f91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* This test makes sure that all Pango headers can be included
 * and compiled in a C++ program.
 */
#define PANGO_ENABLE_ENGINE
#define PANGO_ENABLE_BACKEND

#include <pango/pango.h>

#ifdef HAVE_WIN32
#include <pango/pangowin32.h>
#endif

#ifdef HAVE_X
#include <pango/pangox.h>
#endif

#ifdef HAVE_XFT
#include <pango/pangoxft.h>
#endif

#ifdef HAVE_FREETYPE
#include <pango/pangoft2.h>
#endif

#ifdef HAVE_CAIRO
#include <pango/pangocairo.h>
#endif

int
main ()
{
  return 0;
}