|  | 
|  | 1 | +// Copyright (c) 2023 The Bitcoin Core developers | 
|  | 2 | +// Distributed under the MIT software license, see the accompanying | 
|  | 3 | +// file COPYING or http://www.opensource.org/licenses/mit-license.php. | 
|  | 4 | + | 
|  | 5 | +#ifndef BITCOIN_CONFIG_H | 
|  | 6 | + | 
|  | 7 | +#define BITCOIN_CONFIG_H | 
|  | 8 | + | 
|  | 9 | +/* Version Build */ | 
|  | 10 | +#define CLIENT_VERSION_BUILD @PROJECT_VERSION_PATCH@ | 
|  | 11 | + | 
|  | 12 | +/* Version is release */ | 
|  | 13 | +#define CLIENT_VERSION_IS_RELEASE @CLIENT_VERSION_IS_RELEASE@ | 
|  | 14 | + | 
|  | 15 | +/* Major version */ | 
|  | 16 | +#define CLIENT_VERSION_MAJOR @PROJECT_VERSION_MAJOR@ | 
|  | 17 | + | 
|  | 18 | +/* Minor version */ | 
|  | 19 | +#define CLIENT_VERSION_MINOR @PROJECT_VERSION_MINOR@ | 
|  | 20 | + | 
|  | 21 | +/* Copyright holder(s) before %s replacement */ | 
|  | 22 | +#define COPYRIGHT_HOLDERS "@COPYRIGHT_HOLDERS@" | 
|  | 23 | + | 
|  | 24 | +/* Copyright holder(s) */ | 
|  | 25 | +#define COPYRIGHT_HOLDERS_FINAL "@COPYRIGHT_HOLDERS_FINAL@" | 
|  | 26 | + | 
|  | 27 | +/* Replacement for %s in copyright holders string */ | 
|  | 28 | +#define COPYRIGHT_HOLDERS_SUBSTITUTION "@PROJECT_NAME@" | 
|  | 29 | + | 
|  | 30 | +/* Copyright year */ | 
|  | 31 | +#define COPYRIGHT_YEAR @COPYRIGHT_YEAR@ | 
|  | 32 | + | 
|  | 33 | +/* Define to the address where bug reports for this package should be sent. */ | 
|  | 34 | +#define PACKAGE_BUGREPORT "@PACKAGE_BUGREPORT@" | 
|  | 35 | + | 
|  | 36 | +/* Define to the full name of this package. */ | 
|  | 37 | +#define PACKAGE_NAME "@PROJECT_NAME@" | 
|  | 38 | + | 
|  | 39 | +/* Define to the home page for this package. */ | 
|  | 40 | +#define PACKAGE_URL "@PROJECT_HOMEPAGE_URL@" | 
|  | 41 | + | 
|  | 42 | +/* Define to the version of this package. */ | 
|  | 43 | +#define PACKAGE_VERSION "@PROJECT_VERSION@" | 
|  | 44 | + | 
|  | 45 | +#endif //BITCOIN_CONFIG_H | 
0 commit comments