GFXprim
2D bitmap graphics library with emphasis on speed and correctness
Loading...
Searching...
No Matches
gp_version.h
Go to the documentation of this file.
1// SPDX-License-Identifier: LGPL-2.1-or-later
2/*
3 * Copyright (C) 2009-2024 Cyril Hrubis <metan@ucw.cz>
4 */
5
11#ifndef CORE_GP_VERSION_H
12#define CORE_GP_VERSION_H
13
15#define GP_VER_MAJOR 1
17#define GP_VER_MINOR 0
19#define GP_VER_MICRO 0
20
21#define GP_STRX(x) GP_STR(x)
22#define GP_STR(x) #x
23
27#define GP_VER_STR GP_STRX(GP_VER_MAJOR) "." \
28 GP_STRX(GP_VER_MINOR) "." \
29 GP_STRX(GP_VER_MICRO) "-rc1"
30
31#endif /* CORE_GP_VERSION_H */