forked from hobuinc/hexer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhexer_defines.h.in
More file actions
43 lines (34 loc) · 896 Bytes
/
hexer_defines.h.in
File metadata and controls
43 lines (34 loc) · 896 Bytes
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
#pragma once
#include <string>
/*
* version settings
*/
#define HEXER_VERSION_MAJOR @HEXER_VERSION_MAJOR@
#define HEXER_VERSION_MINOR @HEXER_VERSION_MINOR@
#define HEXER_VERSION_PATCH @HEXER_VERSION_PATCH@
namespace hexer
{
const int hexerVersionMajor { @HEXER_VERSION_MAJOR@ };
const int hexerVersionMinor { @HEXER_VERSION_MINOR@ };
const int hexerVersionPatch { @HEXER_VERSION_PATCH@ };
const std::string hexerVersion { "@HEXER_VERSION@" };
const std::string hexerSha { "@GIT_SHA1@" };
} // namespace hexer
/*
* availability of 3rd-party libraries
*/
#cmakedefine HEXER_HAVE_CAIRO
#cmakedefine HEXER_HAVE_GDAL
/*
* availability of execinfo and backtrace
*/
#cmakedefine HEXER_HAVE_EXECINFO_H
/*
* Debug or Release build?
*/
#define HEXER_BUILD_TYPE "@CMAKE_BUILD_TYPE@"
#cmakedefine WITH_DRAWING
/*
* platform compiler
*/
#cmakedefine HEXER_COMPILER_MSVC