Pioneer
Loading...
Searching...
No Matches
buildopts.h
Go to the documentation of this file.
1// Copyright © 2008-2023 Pioneer Developers. See AUTHORS.txt for details
2// Licensed under the terms of the GPL v3. See licenses/GPL-3.txt
3
4#if defined(_MSC_VER)
5
6#ifndef _BUILDOPTS_H
7#define _BUILDOPTS_H
8
9// game version. usually defined by configure
10#ifndef PIONEER_VERSION
11#define PIONEER_VERSION "unknown"
12#endif
13#ifndef PIONEER_EXTRAVERSION
14#define PIONEER_EXTRAVERSION ""
15#endif
16
17// define to include the object viewer in the build
18#ifndef WITH_OBJECTVIEWER
19#define WITH_OBJECTVIEWER 1
20#endif
21
22// define to include various extra keybindings for dev functions
23#ifndef WITH_DEVKEYS
24#define WITH_DEVKEYS 1
25#endif
26
27#endif
28#endif