File tree 4 files changed +6
-5
lines changed
4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ include(${CMAKE_SOURCE_DIR}/cmake/Config.cmake)
21
21
22
22
# setup version numbers
23
23
set (VERSION_MAJOR 2)
24
- set (VERSION_MINOR 1 )
24
+ set (VERSION_MINOR 2 )
25
25
set (VERSION_PATCH 0)
26
26
27
27
# add the CSFML header path
Original file line number Diff line number Diff line change @@ -32,8 +32,8 @@ macro(csfml_add_library target)
32
32
endif ()
33
33
34
34
# set the version and soversion of the target (for compatible systems -- mostly Linuxes)
35
- set_target_properties (${target} PROPERTIES SOVERSION ${VERSION_MAJOR} )
36
- set_target_properties (${target} PROPERTIES VERSION ${VERSION_MAJOR} .${VERSION_MINOR} )
35
+ set_target_properties (${target} PROPERTIES SOVERSION ${VERSION_MAJOR} . ${VERSION_MINOR} )
36
+ set_target_properties (${target} PROPERTIES VERSION ${VERSION_MAJOR} .${VERSION_MINOR} . ${VERSION_PATCH} )
37
37
38
38
# set the target's folder (for IDEs that support it, e.g. Visual Studio)
39
39
set_target_properties (${target} PROPERTIES FOLDER "CSFML" )
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ PROJECT_NAME = SFML
31
31
# This could be handy for archiving the generated documentation or
32
32
# if some version control system is used.
33
33
34
- PROJECT_NUMBER = @VERSION_MAJOR@.@VERSION_MINOR@
34
+ PROJECT_NUMBER = @VERSION_MAJOR@.@VERSION_MINOR@.@VERSION_PATCH@
35
35
36
36
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
37
37
# base path where the generated documentation will be put.
Original file line number Diff line number Diff line change 30
30
// Define the CSFML version
31
31
////////////////////////////////////////////////////////////
32
32
#define CSFML_VERSION_MAJOR 2
33
- #define CSFML_VERSION_MINOR 1
33
+ #define CSFML_VERSION_MINOR 2
34
+ #define CSFML_VERSION_PATCH 0
34
35
35
36
36
37
////////////////////////////////////////////////////////////
You can’t perform that action at this time.
0 commit comments