aboutsummaryrefslogtreecommitdiff
path: root/config.h.in
blob: 5ebdc87770037e82347b42356cdb4e5e8eb37909 (plain)
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
/*
 * config.h.in
 *
 * Tries to fix various differences in compilers and libraries.
 *
 */

#ifndef __CONFIG_H__
#define __CONFIG_H__

#define PROJECT_NAME "${PROJECT_NAME}"
#define PROJECT_VERSION "${project_VERSION}"
#define PROJECT_URL "${project_URL}"

#if ${OPTION_NOINSTALL}
	/* For developers. */
	#define PROJECT_SHARE_DIR "${CMAKE_SOURCE_DIR}/share/"
#elif defined (_WIN32)
	#define PROJECT_SHARE_DIR "share/${PROJECT_NAME}/"
#else
	#define PROJECT_SHARE_DIR "${CMAKE_INSTALL_PREFIX}/share/${PROJECT_NAME}/"
#endif


#cmakedefine HAVE_SANE___RESTRICT
#cmakedefine HAVE_RESTRICT

#cmakedefine HAVE_GETTEXT


#define Q_(s) (s)
#ifdef HAVE_GETTEXT
	#include <locale.h>
	#include <libintl.h>
	#define _(s) gettext(s)
	#define N_(s1, s2, n) ngettext(s1, s2, n)

	#define GETTEXT_DOMAIN "${PROJECT_NAME}"
	#define GETTEXT_DIRNAME "${CMAKE_INSTALL_PREFIX}/share/locale"
#else /* ! HAVE_GETTEXT */
	#define _(s) (s)
	#define N_(s1, s2, n) ((n) == 1 ? (s1) : (s2))
#endif /* ! HAVE_GETTEXT */


#ifndef HAVE_SANE___RESTRICT
	#ifdef HAVE_RESTRICT
		#define __restrict restrict
	#else
		#define __restrict
	#endif
#endif /* ! HAVE_SANE___RESTRICT */

/* We have to remove nodes first due to a bug in json-glib. */
#define json_object_set_member(object, name, node) \
	G_STMT_START { \
		json_object_remove_member ((object), (name)); \
		json_object_set_member ((object), (name), (node)); \
	} G_STMT_END

#endif /* __CONFIG_H__ */