1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
/* Xiphos config.h
The Xiphos Development Team */
/* Configuration header created by CMake - do not edit */
#ifndef _CONFIG_H_CMAKE
#define _CONFIG_H_CMAKE
// It's a CMAKE build
#define CMAKE_BUILD 1
/* Xiphos stuff */
// Version of Xiphos
#define VERSION "@PROJECT_VERSION@"
// Define to the address where bug reports for this package should be sent.
#define PACKAGE_BUGREPORT "@XIPHOS_BUG_REPORT@"
// Define pixmaps dir
#cmakedefine PACKAGE_PIXMAPS_DIR "@PACKAGE_PIXMAPS_DIR@"
// Define share dir
#cmakedefine SHARE_DIR "@SHARE_DIR@"
// I18n support
#cmakedefine ENABLE_NLS 1
// Gettext Text Domain
#cmakedefine GETTEXT_PACKAGE "@GETTEXT_PACKAGE@"
// Define locale dir
#cmakedefine PACKAGE_LOCALE_DIR "@PACKAGE_LOCALE_DIR@"
// Use Webkit Editor
#cmakedefine USE_WEBKIT_EDITOR 1
// Use Gtk3
#cmakedefine USE_GTK_3 1
// Use GtkBuilder
#cmakedefine USE_GTKBUILDER 1
// Use Webkit 2
#cmakedefine USE_WEBKIT2 1
// dBus
#cmakedefine HAVE_DBUS 1
// Building for Windows©
#cmakedefine WIN32 1
// Enable the GS_message-style tracing printfs
#cmakedefine CHATTY 1
// Debug
#cmakedefine DEBUG 1
/* System stuff */
// strcasestr
#cmakedefine HAVE_STRCASESTR 1
#endif
|