Skip to content

Commit cfff9c0

Browse files
committed
set version to v0.2.0.0
1 parent fd2d456 commit cfff9c0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cmake/build-version.cmake

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ macro( project_version )
2020

2121
if( POLICY CMP0048 )
2222
cmake_policy( SET CMP0048 NEW )
23-
project( ${PV_NAME} VERSION 0.0.2.0 LANGUAGES ${PV_LANGUAGES} )
23+
project( ${PV_NAME} VERSION 0.2.0.0 LANGUAGES ${PV_LANGUAGES} )
2424
else( )
2525
project( ${PV_NAME} ${PV_LANGUAGES} )
2626
# Define a version for the code
@@ -29,11 +29,11 @@ macro( project_version )
2929
endif( )
3030

3131
if( NOT DEFINED ${PV_NAME}_VERSION_MINOR )
32-
set( ${PV_NAME}_VERSION_MINOR 0 )
32+
set( ${PV_NAME}_VERSION_MINOR 2 )
3333
endif( )
3434

3535
if( NOT DEFINED ${PV_NAME}_VERSION_PATCH )
36-
set( ${PV_NAME}_VERSION_PATCH 2 )
36+
set( ${PV_NAME}_VERSION_PATCH 0 )
3737
endif( )
3838

3939
if( NOT DEFINED ${PV_NAME}_VERSION_TWEAK )
@@ -42,4 +42,4 @@ macro( project_version )
4242

4343
set( ${PV_NAME}_VERSION "${${PV_NAME}_VERSION_MAJOR}.${${PV_NAME}_VERSION_MINOR}.${${PV_NAME}_VERSION_PATCH}.${${PV_NAME}_VERSION_TWEAK}" )
4444
endif( )
45-
endmacro( )
45+
endmacro( )

0 commit comments

Comments
 (0)