forked from TNick/dot-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.h.in
97 lines (77 loc) · 2.63 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
/*!
\file config.h
\date February 2014
\author TNick
*//*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Please read COPYING and README files in root folder
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
/* ------------------------------------------------------------------------- */
/* ========================================================================= */
#ifndef DOTEDITOR_config_h_INCLUDE
#define DOTEDITOR_config_h_INCLUDE
//
//
//
//
/* INCLUDES ------------------------------------------------------------ */
#include <QApplication>
/* INCLUDES ============================================================ */
//
//
//
//
/* DEFINITIONS --------------------------------------------------------- */
//! the name of this project
#define DOTEDITOR_PROJECT_NAME "dot-editor"
//! major version (ABI not preserved between these)
#define DOTEDITOR_MAJOR_VERSION @DOTEDITOR_MAJOR_VERSION@
//! minor version; ABI is preserved
#define DOTEDITOR_MINOR_VERSION @DOTEDITOR_MINOR_VERSION@
//! bug fixes
#define DOTEDITOR_PATCH_VERSION @DOTEDITOR_PATCH_VERSION@
//! the version ans a 32-bit integer
#define DOTEDITOR_VERSION \
DOTEDITOR_MAJOR_VERSION * 0x100000 + \
DOTEDITOR_MINOR_VERSION * 0x1000 + \
DOTEDITOR_PATCH_VERSION * 0x1
//! version as a string
#define DOTEDITOR_VERSION_S "@DOTEDITOR_VERSION@"
//! when it was build (UTC)
#define DOTEDITOR_BUILD_TIME "@DOTEDITOR_BUILD_TIME@"
//! components on target system
/// @{
/// @}
// set if this is a debug build
#cmakedefine DOTEDITOR_DEBUG
// set if we're building for win32 targets
#cmakedefine DOTEDITOR_WIN32
// Take the export or inport form depending on who's asking
#if defined(DOTEDITOR_SHARED)
# define DE_EXPORT Q_DECL_EXPORT
#else
# define DE_EXPORT Q_DECL_IMPORT
#endif
/* DEFINITIONS ========================================================= */
//
//
//
//
/* DATA ---------------------------------------------------------------- */
/* DATA ================================================================ */
//
//
//
//
/* FUNCTIONS ----------------------------------------------------------- */
/* FUNCTIONS =========================================================== */
//
//
//
//
/* ------------------------------------------------------------------------- */
/* ========================================================================= */
#endif /* DOTEDITOR_config_h_INCLUDE */