bump version

This commit is contained in:
Sergiu Deitsch 2021-02-13 12:23:32 +01:00
parent 4fa737b62a
commit e370cd5166
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ if (POLICY CMP0063)
cmake_policy (SET CMP0063 NEW) cmake_policy (SET CMP0063 NEW)
endif (POLICY CMP0063) endif (POLICY CMP0063)
project(glog VERSION 0.4.0 LANGUAGES C CXX) project(glog VERSION 0.5.0 LANGUAGES C CXX)
set (CPACK_PACKAGE_NAME glog) set (CPACK_PACKAGE_NAME glog)
set (CPACK_PACKAGE_DESCRIPTION_SUMMARY "") set (CPACK_PACKAGE_DESCRIPTION_SUMMARY "")

View File

@ -138,7 +138,7 @@ If you have glog installed in your system, you can use the CMake command
cmake_minimum_required (VERSION 3.0.2) cmake_minimum_required (VERSION 3.0.2)
project (myproj VERSION 1.0) project (myproj VERSION 1.0)
find_package (glog 0.4.0 REQUIRED) find_package (glog 0.5.0 REQUIRED)
add_executable (myapp main.cpp) add_executable (myapp main.cpp)
target_link_libraries (myapp glog::glog) target_link_libraries (myapp glog::glog)