use test scripts for performing tests
[barvinok.git] / version.c
blob7a935f4d9a2bc1dc420d3026c823d6310ce72059
1 #include <barvinok/util.h>
2 #include "config.h"
3 #include "version.h"
5 const char *barvinok_version(void)
7 return
8 GIT_HEAD_ID"\n"
9 #ifdef HAVE_PET
10 " +PET"
11 #else
12 " -PET"
13 #endif
14 #ifdef HAVE_LIBCDDGMP
15 " +CDDLIB"
16 #else
17 " -CDDLIB"
18 #endif
19 #ifdef HAVE_LIBGLPK
20 " +GLPK"
21 #else
22 " -GLPK"
23 #endif
24 #ifdef POINTS2TRIANGS_PATH
25 " +TOPCOM"
26 #else
27 " -TOPCOM"
28 #endif
29 #ifdef USE_ZSOLVE
30 " +ZSOLVE"
31 #else
32 " -ZSOLVE"
33 #endif
34 "\n"