mirror of
https://github.com/xmrig/xmrig.git
synced 2026-01-23 14:52:52 -05:00
88 lines
2.1 KiB
C
88 lines
2.1 KiB
C
/* XMRig
|
|
* Copyright (c) 2018-2025 SChernykh <https://github.com/SChernykh>
|
|
* Copyright (c) 2016-2025 XMRig <https://github.com/xmrig>, <support@xmrig.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
#ifndef XMRIG_VERSION_H
|
|
#define XMRIG_VERSION_H
|
|
|
|
#define APP_ID "xmrig"
|
|
#define APP_NAME "XMRig"
|
|
#define APP_DESC "XMRig miner"
|
|
#define APP_VERSION "6.25.1-dev"
|
|
#define APP_DOMAIN "xmrig.com"
|
|
#define APP_SITE "www.xmrig.com"
|
|
#define APP_COPYRIGHT "Copyright (C) 2016-2025 xmrig.com"
|
|
#define APP_KIND "miner"
|
|
|
|
#define APP_VER_MAJOR 6
|
|
#define APP_VER_MINOR 25
|
|
#define APP_VER_PATCH 1
|
|
|
|
#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 // XMRIG_VERSION_H
|