blob: 079e0fa67d5d83837fc48f8ecc22d840c8868836 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/**
* @file uncrustify_version.h
* Simply defines UNCRUSTIFY_VERSION.
* I don't particularly like how autoconf and friends handle the version...
*
* @author Ben Gardner
* @license GPL v2+
*/
#ifndef UNCRUSTIFY_VERSION_H_INCLUDED
#define UNCRUSTIFY_VERSION_H_INCLUDED
#ifdef DEBUG
#define UNCRUSTIFY_VERSION "Uncrustify_d-@UNCRUSTIFY_VERSION@"
#else
#define UNCRUSTIFY_VERSION "Uncrustify-@UNCRUSTIFY_VERSION@"
#endif
#endif /* UNCRUSTIFY_VERSION_H_INCLUDED */
|