mirror of
https://github.com/reactos/reactos.git
synced 2025-05-20 01:24:11 +00:00

- REVISION is now something like "0.4.7-dev-53-g1304b53" instead of "r12345". - Change WINDOWS_NT_BANNER to better represent the ReactOS version and the reported NT version. - Introduce REACTOS_COMMIT_HASH which contains the full 40-character commit hash (for comparing revisions, e.g. in rosautotest/testman).
27 lines
749 B
CMake
27 lines
749 B
CMake
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS kernel
|
|
* FILE: include/reactos/version.h.cmake
|
|
* PURPOSE: Defines the current version
|
|
* PROGRAMMER: David Welch (welch@mcmail.com)
|
|
* REVISIONS:
|
|
* 1999-11-06 (ea)
|
|
* Moved from include/internal in include/reactos
|
|
* to be used by buildno.
|
|
* 2002-01-17 (ea)
|
|
* KERNEL_VERSION removed. Use
|
|
* reactos/buildno.h:KERNEL_VERSION_STR instead.
|
|
*/
|
|
|
|
#ifndef __VERSION_H
|
|
#define __VERSION_H
|
|
|
|
#define KERNEL_VERSION_MAJOR @KERNEL_VERSION_MAJOR@
|
|
#define KERNEL_VERSION_MINOR @KERNEL_VERSION_MINOR@
|
|
#define KERNEL_VERSION_PATCH_LEVEL @KERNEL_VERSION_PATCH_LEVEL@
|
|
|
|
#define COPYRIGHT_YEAR "@COPYRIGHT_YEAR@"
|
|
|
|
#endif
|
|
|
|
/* EOF */
|