/usr/include/mrpt/mrpt-config/mrpt/version.h is in libmrpt-dev 1:1.4.0-7.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | /* +---------------------------------------------------------------------------+
| Mobile Robot Programming Toolkit (MRPT) |
| http://www.mrpt.org/ |
+---------------------------------------------------------------------------+ */
#ifndef MRPT_VERSION_H
#define MRPT_VERSION_H
const char MRPT_version_str[] = "MRPT 1.4.0";
/** Version number of package in hexadecimal:
* A three digits version code, eg. 0.5.1 -> 0x051, 1.2.0 -> 0x120 */
#define MRPT_VERSION 0x140
// See specs: https://reproducible-builds.org/specs/source-date-epoch/
const char MRPT_SOURCE_DATE_EPOCH[] = "1461278568";
#endif
|