diff options
Diffstat (limited to 'config.h.cmake')
-rw-r--r-- | config.h.cmake | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/config.h.cmake b/config.h.cmake new file mode 100644 index 00000000..8fd3dc61 --- /dev/null +++ b/config.h.cmake @@ -0,0 +1,23 @@ +#define VERSION "@VERSION@" + +// Defined if you have fvisibility and fvisibility-inlines-hidden support. +#cmakedefine __KDE_HAVE_GCC_VISIBILITY 1 + +/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most + significant byte first (like Motorola and SPARC, unlike Intel). */ +#cmakedefine WORDS_BIGENDIAN @WORDS_BIGENDIAN@ + +// blinken and kanagram can build without aRts support. +#cmakedefine WITHOUT_ARTS 1 + +// Defined to 1 if you have ocaml/facile. +#cmakedefine HAVE_FACILE 1 + +// Define the version for the kig app. +#define KIGVERSION "0.10.7" + +// Define the Python interpreter (python2 vs python3) +#cmakedefine KIG_Python_init @KIG_Python_init@ + +// Defined to 1 if you have <linux/videodev2.h> header file. +#cmakedefine HAVE_LINUX_VIDEODEV2_H 1 |