You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
476 B

/**
* @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 */