summaryrefslogtreecommitdiff
path: root/tests/cxx-test.cpp
blob: 3a98321cb1b682a8f2ee09fba40b4cb27ab5d1b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* This test makes sure that all Pango headers can be included
 * and compiled in a C++ program.
 */

#include <pango2/pango.h>

#if PANGO2_HAS_CAIRO
#include <pango2/pangocairo.h>
#endif

int
main ()
{
  return 0;
}