2017-06-28 21:21:42 +00:00
|
|
|
/*
|
2017-08-19 21:41:53 +00:00
|
|
|
* Modern effects for a modern Streamer
|
|
|
|
* Copyright (C) 2017 Michael Fabian Dirks
|
2017-06-28 21:21:42 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2019-10-13 03:54:20 +00:00
|
|
|
#include <cinttypes>
|
2020-04-02 15:02:01 +00:00
|
|
|
#include <cstddef>
|
2017-06-28 21:21:42 +00:00
|
|
|
|
2020-08-09 23:06:20 +00:00
|
|
|
#define STREAMFX_MAKE_VERSION(major, minor, patch, tweak) \
|
|
|
|
(((uint64_t(major) & 0xFFFFull) << 48ull) | ((uint64_t(minor) & 0xFFFFull) << 32ull) \
|
|
|
|
| ((uint64_t(patch) & 0xFFFFull) << 16ull) | ((uint64_t(tweak) & 0xFFFFull)))
|
2018-04-23 15:52:40 +00:00
|
|
|
|
2020-04-22 20:49:09 +00:00
|
|
|
#define STREAMFX_MASK_MAJOR 0xFFFF000000000000ull
|
2020-01-13 21:40:15 +00:00
|
|
|
#define STREAMFX_MASK_COMPAT 0xFFFFFFFF00000000ull
|
|
|
|
#define STREAMFX_MASK_UPDATE 0xFFFFFFFFFFFF0000ull
|
2018-04-23 15:52:40 +00:00
|
|
|
|
2020-01-13 21:40:15 +00:00
|
|
|
#define STREAMFX_COMMIT "@PROJECT_COMMIT@"
|
|
|
|
#define STREAMFX_VERSION_MAJOR @PROJECT_VERSION_MAJOR@
|
|
|
|
#define STREAMFX_VERSION_MINOR @PROJECT_VERSION_MINOR@
|
|
|
|
#define STREAMFX_VERSION_PATCH @PROJECT_VERSION_PATCH@
|
|
|
|
#define STREAMFX_VERSION_BUILD @PROJECT_VERSION_TWEAK@
|
2020-04-22 20:49:09 +00:00
|
|
|
#define STREAMFX_VERSION_TWEAK @PROJECT_VERSION_TWEAK@
|
|
|
|
#define STREAMFX_VERSION_SUFFIX @VERSION_SUFFIX@
|
2020-08-09 23:06:20 +00:00
|
|
|
#define STREAMFX_VERSION \
|
|
|
|
STREAMFX_MAKE_VERSION(STREAMFX_VERSION_MAJOR, STREAMFX_VERSION_MINOR, STREAMFX_VERSION_PATCH, \
|
|
|
|
STREAMFX_VERSION_BUILD)
|
2020-04-22 20:49:09 +00:00
|
|
|
#define STREAMFX_VERSION_STRING "@VERSION_STRING@"
|