File tree 1 file changed +11
-11
lines changed
1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.10)
2
2
3
3
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
7
7
)
8
8
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 )
11
11
else ()
12
- set ( BUILD_EXAMPLES_DEFAULT OFF )
12
+ set ( BUILD_EXAMPLES_DEFAULT OFF )
13
13
endif ()
14
14
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} )
16
16
17
17
set (CMAKE_CXX_STANDARD 17)
18
18
19
- add_subdirectory ( "${CMAKE_CURRENT_SOURCE_DIR} /lib" )
19
+ add_subdirectory ("${CMAKE_CURRENT_SOURCE_DIR} /lib" )
20
20
21
- if (BPP_BUILD_EXAMPLES)
21
+ if (BPP_BUILD_EXAMPLES)
22
22
enable_testing ()
23
- add_subdirectory ( "${CMAKE_CURRENT_SOURCE_DIR} /examples" )
24
- endif ()
23
+ add_subdirectory ("${CMAKE_CURRENT_SOURCE_DIR} /examples" )
24
+ endif ()
You can’t perform that action at this time.
0 commit comments