Skip to content

Commit e8728ef

Browse files
committed
Update project version
from 1.1.0 to 1.1.1
1 parent ac3e0ab commit e8728ef

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

CMakeLists.txt

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
cmake_minimum_required(VERSION 3.10)
22

33
project(BitmapPlusPlus
4-
VERSION "1.1.0"
5-
DESCRIPTION "Simple and Fast header only Bitmap (BMP) C++ library"
6-
LANGUAGES CXX
4+
VERSION "1.1.1"
5+
DESCRIPTION "Simple and Fast header only Bitmap (BMP) C++ library"
6+
LANGUAGES CXX
77
)
88

9-
if (${CMAKE_SOURCE_DIR} STREQUAL ${PROJECT_SOURCE_DIR} )
10-
set ( BUILD_EXAMPLES_DEFAULT ON )
9+
if (${CMAKE_SOURCE_DIR} STREQUAL ${PROJECT_SOURCE_DIR})
10+
set(BUILD_EXAMPLES_DEFAULT ON)
1111
else ()
12-
set ( BUILD_EXAMPLES_DEFAULT OFF )
12+
set(BUILD_EXAMPLES_DEFAULT OFF)
1313
endif ()
1414

15-
option( BPP_BUILD_EXAMPLES "Requires BPP to build all examples inside examples/ folder." ${BUILD_EXAMPLES_DEFAULT} )
15+
option(BPP_BUILD_EXAMPLES "Requires BPP to build all examples inside examples/ folder." ${BUILD_EXAMPLES_DEFAULT})
1616

1717
set(CMAKE_CXX_STANDARD 17)
1818

19-
add_subdirectory( "${CMAKE_CURRENT_SOURCE_DIR}/lib" )
19+
add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/lib")
2020

21-
if(BPP_BUILD_EXAMPLES)
21+
if (BPP_BUILD_EXAMPLES)
2222
enable_testing()
23-
add_subdirectory( "${CMAKE_CURRENT_SOURCE_DIR}/examples" )
24-
endif()
23+
add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/examples")
24+
endif ()

0 commit comments

Comments
 (0)