electron/atom/common/atom_version.h

37 lines
1.2 KiB
C
Raw Normal View History

// Copyright (c) 2013 GitHub, Inc.
2014-04-25 17:49:37 +08:00
// Use of this source code is governed by the MIT license that can be
2013-08-08 17:22:35 +08:00
// found in the LICENSE file.
#ifndef ATOM_COMMON_ATOM_VERSION_H_
#define ATOM_COMMON_ATOM_VERSION_H_
2013-08-08 17:22:35 +08:00
2016-05-09 19:17:58 +09:00
#define ATOM_MAJOR_VERSION 1
2017-08-31 14:10:33 -04:00
#define ATOM_MINOR_VERSION 8
2017-10-18 16:49:32 -04:00
#define ATOM_PATCH_VERSION 2
2017-11-13 09:26:52 -08:00
#define ATOM_PRE_RELEASE_VERSION -beta.2
2013-08-08 17:22:35 +08:00
2017-11-13 09:27:02 -08:00
#ifndef ATOM_PRE_RELEASE_VERSION
# define ATOM_PRE_RELEASE_VERSION ""
#endif
2017-11-13 09:26:52 -08:00
2013-08-08 17:22:35 +08:00
#ifndef ATOM_STRINGIFY
#define ATOM_STRINGIFY(n) ATOM_STRINGIFY_HELPER(n)
#define ATOM_STRINGIFY_HELPER(n) #n
#endif
# define ATOM_VERSION_STRING ATOM_STRINGIFY(ATOM_MAJOR_VERSION) "." \
ATOM_STRINGIFY(ATOM_MINOR_VERSION) "." \
ATOM_STRINGIFY(ATOM_PATCH_VERSION) \
2017-11-14 13:45:50 -08:00
ATOM_STRINGIFY(ATOM_PRE_RELEASE_VERSION)
2013-08-08 17:22:35 +08:00
#define ATOM_VERSION "v" ATOM_VERSION_STRING
#define ATOM_VERSION_AT_LEAST(major, minor, patch) \
(( (major) < ATOM_MAJOR_VERSION) \
|| ((major) == ATOM_MAJOR_VERSION && (minor) < ATOM_MINOR_VERSION) \
|| ((major) == ATOM_MAJOR_VERSION && (minor) == ATOM_MINOR_VERSION \
&& (patch) <= ATOM_PATCH_VERSION))
2013-08-08 17:22:35 +08:00
#endif // ATOM_COMMON_ATOM_VERSION_H_