2019-12-12 02:32:27 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-12-12 17:10:27 +00:00
|
|
|
// Don't include this file directly but rather go through version.hpp instead.
|
|
|
|
// This is only here so version.cpp.in and the weird archaic windows build
|
|
|
|
// recipies can use the version.
|
2019-12-12 02:32:27 +00:00
|
|
|
|
|
|
|
#define LLARP_NAME "lokinet"
|
|
|
|
|
2019-12-16 23:31:26 +00:00
|
|
|
#define LLARP_DEFAULT_NETID "lokinet"
|
2019-12-12 02:32:27 +00:00
|
|
|
|
|
|
|
#ifndef LLARP_RELEASE_MOTTO
|
|
|
|
#define LLARP_RELEASE_MOTTO "(dev build)"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(_WIN32) && defined(RC_INVOKED)
|
2020-04-07 18:38:56 +00:00
|
|
|
#define LLARP_VERSION LLARP_VERSION_MAJOR, LLARP_VERSION_MINOR, LLARP_VERSION_PATCH, 0
|
2019-12-12 02:32:27 +00:00
|
|
|
|
2019-12-12 17:10:27 +00:00
|
|
|
#define MAKE_TRIPLET(X, Y, Z) TRIPLET_CAT(X, ., Y, ., Z)
|
|
|
|
#define TRIPLET_CAT(X, D1, Y, D2, Z) X##D1##Y##D2##Z
|
2019-12-12 02:32:27 +00:00
|
|
|
|
2019-12-12 17:10:27 +00:00
|
|
|
#define LLARP_VERSION_TRIPLET \
|
2020-01-10 19:59:45 +00:00
|
|
|
MAKE_TRIPLET(LLARP_VERSION_MAJOR, LLARP_VERSION_MINOR, LLARP_VERSION_PATCH)
|
2019-12-12 02:32:27 +00:00
|
|
|
|
|
|
|
#endif
|