Skip to content

Commit 141fbf5

Browse files
committed
Merge pull request #53 from eXpl0it3r/feature/version_2.2
Updated CSFML's version to 2.2.0.
2 parents 944b267 + aad6f7b commit 141fbf5

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ include(${CMAKE_SOURCE_DIR}/cmake/Config.cmake)
2121

2222
# setup version numbers
2323
set(VERSION_MAJOR 2)
24-
set(VERSION_MINOR 1)
24+
set(VERSION_MINOR 2)
2525
set(VERSION_PATCH 0)
2626

2727
# add the CSFML header path

cmake/Macros.cmake

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ macro(csfml_add_library target)
3232
endif()
3333

3434
# 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})
3737

3838
# set the target's folder (for IDEs that support it, e.g. Visual Studio)
3939
set_target_properties(${target} PROPERTIES FOLDER "CSFML")

doc/doxyfile.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ PROJECT_NAME = SFML
3131
# This could be handy for archiving the generated documentation or
3232
# if some version control system is used.
3333

34-
PROJECT_NUMBER = @VERSION_MAJOR@.@VERSION_MINOR@
34+
PROJECT_NUMBER = @VERSION_MAJOR@.@VERSION_MINOR@.@VERSION_PATCH@
3535

3636
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
3737
# base path where the generated documentation will be put.

include/SFML/Config.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@
3030
// Define the CSFML version
3131
////////////////////////////////////////////////////////////
3232
#define CSFML_VERSION_MAJOR 2
33-
#define CSFML_VERSION_MINOR 1
33+
#define CSFML_VERSION_MINOR 2
34+
#define CSFML_VERSION_PATCH 0
3435

3536

3637
////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)