]> sigrok.org Git - libsigrok.git/blame_incremental - include/libsigrok/version.h.in
strutil: add method to get an sr_rational from a string
[libsigrok.git] / include / libsigrok / version.h.in
... / ...
CommitLineData
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef LIBSIGROK_VERSION_H
21#define LIBSIGROK_VERSION_H
22
23/**
24 * @file
25 *
26 * Version number definitions and macros.
27 */
28
29/**
30 * @ingroup grp_versions
31 *
32 * @{
33 */
34
35/*
36 * Package version macros (can be used for conditional compilation).
37 */
38
39/** The libsigrok package 'major' version number. */
40#undef SR_PACKAGE_VERSION_MAJOR
41
42/** The libsigrok package 'minor' version number. */
43#undef SR_PACKAGE_VERSION_MINOR
44
45/** The libsigrok package 'micro' version number. */
46#undef SR_PACKAGE_VERSION_MICRO
47
48/** The libsigrok package version ("major.minor.micro") as string. */
49#undef SR_PACKAGE_VERSION_STRING
50
51/*
52 * Library/libtool version macros (can be used for conditional compilation).
53 */
54
55/** The libsigrok libtool 'current' version number. */
56#undef SR_LIB_VERSION_CURRENT
57
58/** The libsigrok libtool 'revision' version number. */
59#undef SR_LIB_VERSION_REVISION
60
61/** The libsigrok libtool 'age' version number. */
62#undef SR_LIB_VERSION_AGE
63
64/** The libsigrok libtool version ("current:revision:age") as string. */
65#undef SR_LIB_VERSION_STRING
66
67/** @} */
68
69#endif