forked from xournalpp/xournalpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.h.in
80 lines (62 loc) · 1.22 KB
/
config.h.in
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
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
* Xournal++
*
* Static project constants
*
* @author Xournal++ Team
* https://github.com/xournalpp/xournalpp
*
* @license GNU GPLv2 or later
*/
#pragma once
/* --- Project info --- */
/**
* Full name of this project
*/
#cmakedefine PROJECT_NAME "@PROJECT_NAME@"
/**
* Name of package
*/
#cmakedefine PROJECT_PACKAGE "@PROJECT_PACKAGE@"
/**
* Project version number
*/
#cmakedefine PROJECT_VERSION "@PROJECT_VERSION@"
/**
* Address where bug reports for this project should be sent
*/
#cmakedefine PROJECT_BUGREPORT "@PROJECT_BUGREPORT@"
/**
* Full name and version of this project
*/
#cmakedefine PROJECT_STRING "@PROJECT_STRING@"
/**
* Project URL
*/
#cmakedefine PROJECT_URL "@PROJECT_URL@"
/* --- Current git repo info --- */
/**
* Origin URL of current repository
*/
#cmakedefine GIT_ORIGIN_URL "@GIT_ORIGIN_URL@"
/**
* Git origin repo owner
*/
#cmakedefine GIT_ORIGIN_OWNER "@GIT_ORIGIN_OWNER@"
/**
* Git origin repo name
*/
#cmakedefine GIT_ORIGIN_REPO "@GIT_ORIGIN_REPO@"
/**
* Current branch of git repo
*/
#cmakedefine GIT_BRANCH "@GIT_BRANCH@"
/* --- I18N --- */
/**
* Enable i18n
*/
#cmakedefine ENABLE_NLS
/**
* Gettext package
*/
#cmakedefine GETTEXT_PACKAGE "@GETTEXT_PACKAGE@"