-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversion.hpp
More file actions
18 lines (14 loc) · 636 Bytes
/
version.hpp
File metadata and controls
18 lines (14 loc) · 636 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-FileCopyrightText: 2017 Christian Sailer
// SPDX-FileCopyrightText: 2021 Petros Koutsolampros
//
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
// use these to define the depthmap versions
#define DEPTHMAP_MAJOR_VERSION 0
#define DEPTHMAP_MINOR_VERSION 9
#define DEPTHMAP_REVISION_VERSION 0
#define DEPTHMAP_MODULE_VERSION 10.04
// leave these alone - C Preprocessor magic to get stuff to the right format
#define STRINGIFY(v) #v
#define TITLE_BASE_FORMAT(interface, version, minor, revision) \
interface " " STRINGIFY(version) "." STRINGIFY(minor) "." STRINGIFY(revision)