1/*
2 * evo-version.h
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU Lesser General Public License as published by
6 * the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
10 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
11 * for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this program; if not, see <http://www.gnu.org/licenses/>
15 *
16 */
17
18#ifndef EVO_VERSION_H
19#define EVO_VERSION_H
20
21/* This is a private header used only to record migration.
22 * If a need arises to make this header public, expand the
23 * API to mimic libedataserver/eds-version.h. */
24
25#define EVO_MAJOR_VERSION @PROJECT_VERSION_MAJOR@
26#define EVO_MINOR_VERSION @PROJECT_VERSION_MINOR@
27#define EVO_MICRO_VERSION @PROJECT_VERSION_PATCH@
28
29#endif /* EVO_VERSION_H */
30