87 lines
2.1 KiB
C
87 lines
2.1 KiB
C
/* Miner Platform
|
|
* Copyright (c) 2025 Lethean <https://lethean.io>
|
|
* Based on XMRig by SChernykh and XMRig team (GPL-3.0-or-later)
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
#ifndef MINER_VERSION_H
|
|
#define MINER_VERSION_H
|
|
|
|
#define APP_ID "miner"
|
|
#define APP_NAME "Miner"
|
|
#define APP_DESC "Miner"
|
|
#define APP_VERSION "0.1.0"
|
|
#define APP_DOMAIN "lethean.io"
|
|
#define APP_SITE "www.lethean.io"
|
|
#define APP_COPYRIGHT "Copyright (C) 2025 Lethean"
|
|
#define APP_KIND "miner"
|
|
|
|
#define APP_VER_MAJOR 0
|
|
#define APP_VER_MINOR 1
|
|
#define APP_VER_PATCH 0
|
|
|
|
#ifdef _MSC_VER
|
|
# if (_MSC_VER >= 1950)
|
|
# define MSVC_VERSION 2026
|
|
# elif (_MSC_VER >=1930 && _MSC_VER < 1950)
|
|
# define MSVC_VERSION 2022
|
|
# elif (_MSC_VER >= 1920 && _MSC_VER < 1930)
|
|
# define MSVC_VERSION 2019
|
|
# elif (_MSC_VER >= 1910 && _MSC_VER < 1920)
|
|
# define MSVC_VERSION 2017
|
|
# elif _MSC_VER == 1900
|
|
# define MSVC_VERSION 2015
|
|
# elif _MSC_VER == 1800
|
|
# define MSVC_VERSION 2013
|
|
# elif _MSC_VER == 1700
|
|
# define MSVC_VERSION 2012
|
|
# elif _MSC_VER == 1600
|
|
# define MSVC_VERSION 2010
|
|
# else
|
|
# define MSVC_VERSION 0
|
|
# endif
|
|
#endif
|
|
|
|
#ifdef XMRIG_OS_WIN
|
|
# define APP_OS "Windows"
|
|
#elif defined XMRIG_OS_IOS
|
|
# define APP_OS "iOS"
|
|
#elif defined XMRIG_OS_MACOS
|
|
# define APP_OS "macOS"
|
|
#elif defined XMRIG_OS_ANDROID
|
|
# define APP_OS "Android"
|
|
#elif defined XMRIG_OS_LINUX
|
|
# define APP_OS "Linux"
|
|
#elif defined XMRIG_OS_FREEBSD
|
|
# define APP_OS "FreeBSD"
|
|
#elif defined XMRIG_OS_OPENBSD
|
|
# define APP_OS "OpenBSD"
|
|
#elif defined XMRIG_OS_HAIKU
|
|
# define APP_OS "Haiku"
|
|
#else
|
|
# define APP_OS "Unknown OS"
|
|
#endif
|
|
|
|
#define STR(X) #X
|
|
#define STR2(X) STR(X)
|
|
|
|
#ifdef XMRIG_ARM
|
|
# define APP_ARCH "ARMv" STR2(XMRIG_ARM)
|
|
#elif defined(XMRIG_RISCV)
|
|
# define APP_ARCH "RISC-V"
|
|
#else
|
|
# if defined(__x86_64__) || defined(__amd64__) || defined(_M_X64) || defined(_M_AMD64)
|
|
# define APP_ARCH "x86-64"
|
|
# else
|
|
# define APP_ARCH "x86"
|
|
# endif
|
|
#endif
|
|
|
|
#ifdef XMRIG_64_BIT
|
|
# define APP_BITS "64 bit"
|
|
#else
|
|
# define APP_BITS "32 bit"
|
|
#endif
|
|
|
|
#endif // MINER_VERSION_H
|