/* * Copyright (c) 2020-2023 Vasile Vilvoiu * * specgram is free software; you can redistribute it and/or modify * it under the terms of the MIT license. See LICENSE for details. */ #ifndef _SPECGRAM_HPP_ #define _SPECGRAM_HPP_ #include #include /* * version */ #define SPECGRAM_VERSION_MAJOR @VERSION_MAJOR@ #define SPECGRAM_VERSION_MINOR @VERSION_MINOR@ #define SPECGRAM_VERSION_PATCH @VERSION_PATCH@ #define SPECGRAM_VERSION_BUILD "@GIT_HASH@" #ifdef GIT_BUILD #define SPECGRAM_VERSION "@VERSION_MAJOR@.@VERSION_MINOR@.@VERSION_PATCH@.@GIT_HASH@" #else #define SPECGRAM_VERSION "@VERSION_MAJOR@.@VERSION_MINOR@.@VERSION_PATCH@" #endif #endif