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