-
Notifications
You must be signed in to change notification settings - Fork 22
/
version.h
27 lines (23 loc) · 944 Bytes
/
version.h
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
/******************************************************************************
* @file version.h
*
* @brief contains the version number of the base BreadboardOS project
*
* @author Cavin McKinley (MCKNLY LLC)
*
* @date 02-14-2024
*
* @copyright Copyright (c) 2024 Cavin McKinley (MCKNLY LLC)
* Released under the MIT License
*
* SPDX-License-Identifier: MIT
******************************************************************************/
#ifndef VERSION_H
#define VERSION_H
// maintain BreadboardOS version so it can be tracked along with custom project
#define BBOS_NAME "breadboard-os" // do not change
#define BBOS_VERSION_MAJOR 0 // changed only for major release update
#define BBOS_VERSION_MINOR 3 // changed only for minor release update
// custom project name and version is defined in top level CMakeLists.txt
// look for PROJ_NAME and PROJ_VER
#endif /* VERSION_H */