12345678910111213141516171819202122232425262728293031 |
- /* This file is part of JJSave.
- *
- * JJSave 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 3 of the License, or
- * (at your option) any later version.
- *
- * JJSave 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, see <https://www.gnu.org/licenses/>.
- */
- #ifndef H_JJSAVE_VERSION
- #define H_JJSAVE_VERSION
- #define JJSAVE_VERSION_MAJOR 0
- #define JJSAVE_VERSION_MINOR 1
- #define JJSAVE_VERSION_PATCH 0
- #define _STRINGIFY(x) #x
- #define STRINGIFY(x) _STRINGIFY(x)
- #define JJSAVE_VERSION_STR STRINGIFY(JJSAVE_VERSION_MAJOR) "." \
- STRINGIFY(JJSAVE_VERSION_MINOR) "." \
- STRINGIFY(JJSAVE_VERSION_PATCH)
- #endif
|