-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathversion.cmake
More file actions
48 lines (38 loc) · 1.7 KB
/
version.cmake
File metadata and controls
48 lines (38 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
##############################################################################
# FALCON - The Falcon Programming Language
# FILE: version.cmake
#
# Version information
# -------------------------------------------------------------------
# Author: Giancarlo Niccolai
# Begin : Tue, 02 Jan 2018 16:15:56 +0000
# Touch : Tue, 02 Jan 2018 18:31:24 +0000
#
# -------------------------------------------------------------------
# (C) Copyright 2018 The Falcon Programming Language
# Released under Apache 2.0 License.
##############################################################################
# Major.Minor.Revision.Patch
set(FALCON_VERSION_MAJOR 2)
set(FALCON_VERSION_MINOR 0)
set(FALCON_VERSION_REVISION 0)
set(FALCON_VERSION_PATCH 0)
# A symbolic name given to milestone releases
set(FALCON_VERSION_NAME "Peregrine")
# Extra specification given to milestone release (alpha/beta/candidate etc.)
set(FALCON_VERSION_SPEC "alpha")
# Successive build ID after a milestone (number of public + internal releases since major change)
set(FALCON_VERSION_BUILD_ID 0)
# So-name versioning (used to determine compatibility of users with the engine SO).
set(FALCON_SONAME_VERSION 3)
set(FALCON_SONAME_REVISION 0)
set(FALCON_SONAME_AGE 0)
## SONAME and soversion (unix so library informations for engine)
# Remember that SONAME never follows project versioning, but
# uses a VERSION, REVISION, AGE format, where
# VERSION: generational version of the project
# REVISION: times this version has been touched
# AGE: Number of version for which binary compatibility is granted
# In eample, 1.12.5 means that this lib may be dynlinked against
# every program using this lib versioned from 1.8 to 1.12.
# end of version.cmake