63 lines
1.6 KiB
C
63 lines
1.6 KiB
C
/*
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
Copyright © 2015-2021 Amebis
|
|
Copyright © 2016 GÉANT
|
|
*/
|
|
|
|
/*
|
|
NOTE: This file should not be UTF-16 encoded, as the build process
|
|
uses grep.exe to extract version numbers.
|
|
|
|
NOTE: When any of the strings contain non-ASCII characters, this
|
|
file should be UTF-8 encoded with BOM. Without BOM, MSVC will read
|
|
this file using the "Language for non-Unicode programs" charset
|
|
(aka ANSI CP).
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
//
|
|
// Product version by components
|
|
// Note: Resource Compiler has limited preprocessing capability,
|
|
// thus we need to specify major, minor and other version components
|
|
// separately.
|
|
//
|
|
#define PRODUCT_VERSION_MAJ 1
|
|
#define PRODUCT_VERSION_MIN 3
|
|
#define PRODUCT_VERSION_REV 4
|
|
#define PRODUCT_VERSION_BUILD 0
|
|
|
|
//
|
|
// Human readable product version and build year for UI
|
|
//
|
|
#define PRODUCT_VERSION_STR "1.3d"
|
|
#define PRODUCT_BUILD_YEAR_STR "2021"
|
|
|
|
//
|
|
// Numerical version presentation for ProductVersion propery in
|
|
// MSI packages (syntax: N.N[.N[.N]])
|
|
//
|
|
#define PRODUCT_VERSION_INST "1.3.4"
|
|
|
|
//
|
|
// The product code for ProductCode property in MSI packages
|
|
// Replace with new on every version change, regardless how minor it is.
|
|
//
|
|
#define PRODUCT_VERSION_GUID "{7E905978-327E-4097-80F2-C53928B0E589}"
|
|
|
|
//
|
|
// Product vendor
|
|
//
|
|
#define VENDOR_NAME_STR "GÉANT"
|
|
|
|
//
|
|
// Since the product name is not finally confirmed at the time of
|
|
// developing it, make it easily customizable.
|
|
//
|
|
#define PRODUCT_NAME_STR "GÉANTLink"
|
|
|
|
//
|
|
// EAPHost author ID
|
|
//
|
|
#define EAPMETHOD_AUTHOR_ID 67532
|