1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
2  *
3  * Copyright (C) 2012 Richard Hughes <richard@hughsie.com>
4  *
5  * Licensed under the GNU General Public License Version 2
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 2 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, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21 
22 #if !defined (__COLORHUG_H_INSIDE__) && !defined (CH_COMPILATION)
23 #error "Only <colorhug.h> can be included directly."
24 #endif
25 
26 #ifndef __CH_VERSION_H
27 #define __CH_VERSION_H
28 
29 /* compile time version
30  */
31 #define CH_MAJOR_VERSION				(1)
32 #define CH_MINOR_VERSION				(3)
33 #define CH_MICRO_VERSION				(5)
34 
35 /* check whether a Ch version equal to or greater than
36  * major.minor.micro.
37  */
38 #define CH_CHECK_VERSION(major,minor,micro)    \
39     (CH_MAJOR_VERSION > (major) || \
40      (CH_MAJOR_VERSION == (major) && CH_MINOR_VERSION > (minor)) || \
41      (CH_MAJOR_VERSION == (major) && CH_MINOR_VERSION == (minor) && \
42       CH_MICRO_VERSION >= (micro)))
43 
44 #endif /* __CH_VERSION_H */
45