forked from luxonis/depthai-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
version.hpp.in
23 lines (20 loc) · 877 Bytes
/
version.hpp.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
* Generated by CMake build tool.
* To modify version, open CMakeLists.txt and bump the version in project() function
*/
#pragma once
namespace dai
{
namespace build
{
constexpr static const char* VERSION = "${PROJECT_VERSION}";
constexpr static const int VERSION_MAJOR = ${PROJECT_VERSION_MAJOR};
constexpr static const int VERSION_MINOR = ${PROJECT_VERSION_MINOR};
constexpr static const int VERSION_PATCH = ${PROJECT_VERSION_PATCH};
constexpr static const char* COMMIT = "${BUILD_COMMIT}";
constexpr static const char* COMMIT_DATETIME = "${BUILD_COMMIT_DATETIME}";
constexpr static const char* BUILD_DATETIME = "${BUILD_DATETIME}";
constexpr static const char* DEVICE_VERSION = "${DEPTHAI_DEVICE_VERSION}";
constexpr static const char* BOOTLOADER_VERSION = "${DEPTHAI_BOOTLOADER_VERSION}";
} // namespace build
} // namespace dai