/* SPDX-License-Identifier: GPL-3.0-or-later Copyright © 2015-2022 Amebis */ #pragma once // // Product version as a single DWORD // Note: Used for version comparison within C/C++ code. // #define PRODUCT_VERSION 0x02050500 // // 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 2 #define PRODUCT_VERSION_MIN 5 #define PRODUCT_VERSION_REV 5 #define PRODUCT_VERSION_BUILD 0 // // Human readable product version and build year for UI // #define PRODUCT_VERSION_STR "2.5.5" #define PRODUCT_BUILD_YEAR_STR "2021" // // Numerical version presentation for ProductVersion propery in // MSI packages (syntax: N.N[.N[.N]]) // #define PRODUCT_VERSION_INST "2.5.5" // // 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 "{109805EF-6EB5-4F43-A05A-82B3862E16B5}" // // The product vendor and application name for configuration keeping. // #define PRODUCT_CFG_VENDOR "Amebis" #define PRODUCT_CFG_APPLICATION "ZRCola"