diff --git a/README.md b/README.md index ca7331fd..d6c73ac0 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,9 @@ A general-purpose CMake library that provides functions that improve the CMake experience. -It provides different functions such as `project_options`, `package_project`, `dynamic_project_options`, `run_vcpkg`, `target_link_system_libraries`, etc. +Provides different features such as `project_options`, `package_project`, `dynamic_project_options`, `run_vcpkg`, `target_link_system_libraries`, and it follows the best practices for C++/C/CMake. + +[![ci](https://github.com/aminya/project_options/actions/workflows/ci.yml/badge.svg)](https://github.com/aminya/project_options/actions/workflows/ci.yml) ## Usage @@ -17,11 +19,11 @@ cmake_minimum_required(VERSION 3.16) # If commented, the latest supported standard for your compiler is automatically set. # set(CMAKE_CXX_STANDARD 20) -# Add project_options v0.25.2 +# Add project_options v0.26.0 # https://github.com/aminya/project_options # Change the version in the following URL to update the package (watch the releases of the repository for future updates) include(FetchContent) -FetchContent_Declare(_project_options URL https://github.com/aminya/project_options/archive/refs/tags/v0.25.2.zip) +FetchContent_Declare(_project_options URL https://github.com/aminya/project_options/archive/refs/tags/v0.26.0.zip) FetchContent_MakeAvailable(_project_options) include(${_project_options_SOURCE_DIR}/Index.cmake) @@ -370,11 +372,11 @@ cmake_minimum_required(VERSION 3.16) # If commented, the latest supported standard for your compiler is automatically set. # set(CMAKE_CXX_STANDARD 20) -# Add project_options v0.25.2 +# Add project_options v0.26.0 # https://github.com/aminya/project_options # Change the version in the following URL to update the package (watch the releases of the repository for future updates) include(FetchContent) -FetchContent_Declare(_project_options URL https://github.com/aminya/project_options/archive/refs/tags/v0.25.2.zip) +FetchContent_Declare(_project_options URL https://github.com/aminya/project_options/archive/refs/tags/v0.26.0.zip) FetchContent_MakeAvailable(_project_options) include(${_project_options_SOURCE_DIR}/Index.cmake)