~helene-verhaeghe27/cairo-dock-core/bugfix

508 by fabounet
the Core can now be compiled with cmake : cmake CMakeLists.txt -DCMAKE_INSTALL_PREFIX=/usr
1
#ifndef __CAIRO_DOCK_BUILD_CONFIG_H__
2
#define __CAIRO_DOCK_BUILD_CONFIG_H__
3
4
/* always defined to indicate that i18n is enabled */
5
#define ENABLE_NLS 1
6
7
/* Gettext package. */
8
#define GETTEXT_PACKAGE @GETTEXT_PACKAGE@
9
10
/* Define to 1 if you have the `bind_textdomain_codeset' function. */
11
#define HAVE_BIND_TEXTDOMAIN_CODESET 1
12
13
/* Define to 1 if you have the `dcgettext' function. */
14
#define HAVE_DCGETTEXT 1
15
16
/* Define if the GNU gettext() function is already present or preinstalled. */
17
#define HAVE_GETTEXT 1
18
19
/* Define if your <locale.h> file defines LC_MESSAGES. */
20
#cmakedefine HAVE_LC_MESSAGES @HAVE_LC_MESSAGES@
21
22
/* Define to 1 if you have the `m' library (-lm). */
23
#cmakedefine HAVE_LIBM @HAVE_LIBM@
24
25
/* Define to 1 if you have the <math.h> header file. */
26
#cmakedefine HAVE_MATH_H @HAVE_MATH_H@
27
28
// Appli
597 by fabounet
finally added a core library
29
#define CAIRO_DOCK_GETTEXT_PACKAGE "@CAIRO_DOCK_GETTEXT_PACKAGE@"
697.1.1 by Fabrice Rey
core rewriting \!
30
#define CAIRO_DOCK_VERSION "@VERSION@"
610 by fabounet
removed unused functions
31
#define CAIRO_DOCK_SHARE_DATA_DIR "@CAIRO_DOCK_SHARE_DATA_DIR@"
666 by Fabrice Rey
fixed adress of third-party applets in the menu + few arrangement to isolate some functions from the core
32
#define CAIRO_DOCK_SHARE_THEMES_DIR "@CAIRO_DOCK_SHARE_THEMES_DIR@"
508 by fabounet
the Core can now be compiled with cmake : cmake CMakeLists.txt -DCMAKE_INSTALL_PREFIX=/usr
33
#define CAIRO_DOCK_LOCALE_DIR "@CAIRO_DOCK_LOCALE_DIR@"
34
#define CAIRO_DOCK_THEMES_DIR "@CAIRO_DOCK_THEMES_DIR@"
35
#define CAIRO_DOCK_DISTANT_THEMES_DIR "@CAIRO_DOCK_DISTANT_THEMES_DIR@"
1176 by Fabrice Rey
updated themes folder, defined it in CMakeList.txt
36
508 by fabounet
the Core can now be compiled with cmake : cmake CMakeLists.txt -DCMAKE_INSTALL_PREFIX=/usr
37
#endif
38