File: version.h.in

package info (click to toggle)
normaliz 3.11.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 40,448 kB
  • sloc: cpp: 48,104; makefile: 2,247; sh: 1
file content (14 lines) | stat: -rw-r--r-- 491 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef LIBNORMALIZ_NMZ_VERSION_H
#define LIBNORMALIZ_NMZ_VERSION_H

#define NMZ_VERSION_MAJOR  @LIBNORMALIZ_VERSION_MAJOR@
#define NMZ_VERSION_MINOR  @LIBNORMALIZ_VERSION_MINOR@
#define NMZ_VERSION_PATCH  @LIBNORMALIZ_VERSION_PATCH@
#define NMZ_VERSION        @LIBNORMALIZ_VERSION_STRING@
#define NMZ_RELEASE (NMZ_VERSION_MAJOR * 10000 + NMZ_VERSION_MINOR * 100 + NMZ_VERSION_PATCH)

namespace libnormaliz {
unsigned int getVersion();
} //end namespace libnormaliz

#endif // NMZ_VERSION_H