File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed
Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 3.10)
22
33project (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 )
1111else ()
12- set ( BUILD_EXAMPLES_DEFAULT OFF )
12+ set ( BUILD_EXAMPLES_DEFAULT OFF )
1313endif ()
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
1717set (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 ()
You can’t perform that action at this time.
0 commit comments