diff options
author | gregory guy <g-gregory@gmx.fr> | 2019-06-27 16:35:25 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2019-06-28 13:45:47 +0200 |
commit | aca01d5a8b7d3de53fa34696e18c91db720a5ab6 (patch) | |
tree | 6b9b83c599cc5db58df8041ca5cf812e00bbd25e /config.h.cmake | |
parent | 88af19c041ad4f1139f6f0a35cd1a4fe2018425f (diff) | |
download | tdeedu-aca01d5a8b7d3de53fa34696e18c91db720a5ab6.tar.gz tdeedu-aca01d5a8b7d3de53fa34696e18c91db720a5ab6.zip |
Conversion to the cmake building system.
Add includes to UI files to resolve FTBFS.
Signed-off-by: gregory guy <g-gregory@gmx.fr>
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit d4a1613e9f119ae68c695ab60f8d9856d1a54a52)
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 |