forked from evemuproject/evemu_crucible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.h.in
60 lines (48 loc) · 1.17 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
/*
* Configuration header, generated by 'cmake' during compilation.
*/
/*
* Platform defines
*/
// X64
// Define this if you are under an X64-based operating system.
#cmakedefine X64 1
// WIN32
// Define this if you are on Windows.
// CMake passes this as a command-line define.
// CYGWIN
// Define this if you are under CYGWIN.
#cmakedefine CYGWIN 1
// FREE_BSD
// Define this if you are on FreeBSD.
#cmakedefine FREE_BSD 1
// APPLE
// Define this if you are on Apple's OS.
#cmakedefine APPLE 1
/*
* Compiler defines
*/
// MSVC
// Define this if you are using Microsoft C++ Compiler.
#cmakedefine MSVC 1
// GNUC
// Define this if you are using GNU C++ compiler.
#cmakedefine GNUC 1
// MINGW
// Define this if you are using MinGW C++ compiler.
#cmakedefine MINGW 1
/*
* Configuration
*/
// NDEBUG
// Define this if you want a non-debug (release) build
// CMake passes this as a command-line define.
// EVEMU_ROOT_DIR
// The root of EVEmu workspace.
#define EVEMU_ROOT_DIR "@EVEMU_ROOT_DIR@"
// EVEMU_VERSION
// The version of source.
//#define EVEMU_VERSION "@PROJECT_VERSION@"
// TINYXML_USE_STL
// Define this if tinyxml should use native STL.
#cmakedefine TINYXML_USE_STL 1