1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
// GetDP - Copyright (C) 1997-2018 P. Dular and C. Geuzaine, University of Liege
//
// See the LICENSE.txt file for license information. Please report all
// issues on https://gitlab.onelab.info/getdp/getdp/issues
#ifndef _GETDP_VERSION_H_
#define _GETDP_VERSION_H_
#define GETDP_MAJOR_VERSION ${GETDP_MAJOR_VERSION}
#define GETDP_MINOR_VERSION ${GETDP_MINOR_VERSION}
#define GETDP_PATCH_VERSION ${GETDP_PATCH_VERSION}
#define GETDP_EXTRA_VERSION "${GETDP_EXTRA_VERSION}"
#define GETDP_VERSION "${GETDP_VERSION}"
#define GETDP_DATE "${GETDP_DATE}"
#define GETDP_HOST "${GETDP_HOST}"
#define GETDP_PACKAGER "${GETDP_PACKAGER}"
#define GETDP_OS "${GETDP_OS}"
#define GETDP_SHORT_LICENSE "${GETDP_SHORT_LICENSE}"
#endif
|