-
Notifications
You must be signed in to change notification settings - Fork 0
/
ProductInfo.h.in
27 lines (21 loc) · 1.04 KB
/
ProductInfo.h.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
* Copyright (c) 2020-2021 Arm Limited. All rights reserved.
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef PRODUCTINFO_H
#define PRODUCTINFO_H
// Product Information
static constexpr const char* MAJOR_VERSION = "@PROJECT_VERSION_MAJOR@";
static constexpr const char* MINOR_VERSION = "@PROJECT_VERSION_MINOR@";
static constexpr const char* PATCH_VERSION = "@PROJECT_VERSION_PATCH@";
static constexpr const char* BUILD_VERSION = "0";
static constexpr const char* COMPANY_NAME = "Arm Ltd.";
static constexpr const char* FILE_DESCRIPTION = "CMSIS Project Manager";
static constexpr const char* PRODUCT_NAME = "CMSIS Project Manager";
static constexpr const char* INTERNAL_NAME = "csolution";
static constexpr const char* ORIGINAL_FILENAME = "csolution";
static constexpr const char* COPYRIGHT_NOTICE = "(C) @PROJECT_VERSION_YEAR@ Arm Ltd. and Contributors";
static constexpr const char* VERSION_STRING = "@PROJECT_VERSION_FULL@";
static constexpr const char* VERSION_STRING_RC = "@PROJECT_VERSION_FULL@";
#endif // PRODUCTINFO_H