diff options
author | gregory guy <gregory-tde@laposte.net> | 2019-11-28 13:55:01 +0100 |
---|---|---|
committer | TDE Gitea <gitea@mirror.git.trinitydesktop.org> | 2020-02-08 17:25:55 +0000 |
commit | 46c80b0f5b2f5b57fbded23bfe3253224b4a0728 (patch) | |
tree | d23698bbe88e24337ac398faf9d5dc17aae86f95 /config.h.cmake | |
parent | e780bc0560b84111a815f9534aefef7e5c89b099 (diff) | |
download | kaffeine-46c80b0f5b2f5b57fbded23bfe3253224b4a0728.tar.gz kaffeine-46c80b0f5b2f5b57fbded23bfe3253224b4a0728.zip |
Conversion to the cmake building system.
Add a man page taken from the Debian build system.
dvbdata.tar.gz from the "images" folder has been decompressed
and the data files have been put into their own folder (dvbdata).
kaffeine-iso.desktop file added from the Debian packaging.
Signed-off-by: gregory guy <gregory-tde@laposte.net>
Diffstat (limited to 'config.h.cmake')
-rw-r--r-- | config.h.cmake | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/config.h.cmake b/config.h.cmake new file mode 100644 index 0000000..9e8ebf2 --- /dev/null +++ b/config.h.cmake @@ -0,0 +1,39 @@ +#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@ + +/* Defined if you have xinerama */ +#cmakedefine HAVE_XINERAMA 1 + +/* Defined if you have the xcb library */ +#cmakedefine HAVE_XCB 1 + +/* Defined if you have the xine library (libxine) */ +#cmakedefine HAVE_XINE 1 + +/* Defined if xinelib greater than "1.1.0" */ +#cmakedefine XINE_PARAM_GAPLESS_SWITCH 1 +#cmakedefine XINE_PARAM_EARLY_FINISHED_EVENT 1 + +/* Defined if you have the X11 dpms headers */ +#cmakedefine HAVE_DPMS 1 + +/* Defined if you have the xtest library */ +#cmakedefine HAVE_XTEST 1 + +/* Defined if you want tqt support only */ +#cmakedefine USE_TQT_ONLY 1 + +/* Defined if you want the xinit workaround */ +#cmakedefine XINIT_WKRND 1 + +/* Defined if you have <cdio/paranoia/cdda.h> libcdio header */ +#cmakedefine HAVE_LIBCDIO_090 1 + +/* Defined if you have <linux/dvb/frontend.h> linux dvb header */ +#cmakedefine HAVE_DVB |