Skip to content

Commit c0f69a1

Browse files
committed
chore: v0.26.0
1 parent 0f1199d commit c0f69a1

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
A general-purpose CMake library that provides functions that improve the CMake experience.
44

5-
It provides different functions such as `project_options`, `package_project`, `dynamic_project_options`, `run_vcpkg`, `target_link_system_libraries`, etc.
5+
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.
6+
7+
[![ci](https://github.com/aminya/project_options/actions/workflows/ci.yml/badge.svg)](https://github.com/aminya/project_options/actions/workflows/ci.yml)
68

79
## Usage
810

@@ -17,11 +19,11 @@ cmake_minimum_required(VERSION 3.16)
1719
# If commented, the latest supported standard for your compiler is automatically set.
1820
# set(CMAKE_CXX_STANDARD 20)
1921
20-
# Add project_options v0.25.2
22+
# Add project_options v0.26.0
2123
# https://github.com/aminya/project_options
2224
# Change the version in the following URL to update the package (watch the releases of the repository for future updates)
2325
include(FetchContent)
24-
FetchContent_Declare(_project_options URL https://github.com/aminya/project_options/archive/refs/tags/v0.25.2.zip)
26+
FetchContent_Declare(_project_options URL https://github.com/aminya/project_options/archive/refs/tags/v0.26.0.zip)
2527
FetchContent_MakeAvailable(_project_options)
2628
include(${_project_options_SOURCE_DIR}/Index.cmake)
2729
@@ -370,11 +372,11 @@ cmake_minimum_required(VERSION 3.16)
370372
# If commented, the latest supported standard for your compiler is automatically set.
371373
# set(CMAKE_CXX_STANDARD 20)
372374
373-
# Add project_options v0.25.2
375+
# Add project_options v0.26.0
374376
# https://github.com/aminya/project_options
375377
# Change the version in the following URL to update the package (watch the releases of the repository for future updates)
376378
include(FetchContent)
377-
FetchContent_Declare(_project_options URL https://github.com/aminya/project_options/archive/refs/tags/v0.25.2.zip)
379+
FetchContent_Declare(_project_options URL https://github.com/aminya/project_options/archive/refs/tags/v0.26.0.zip)
378380
FetchContent_MakeAvailable(_project_options)
379381
include(${_project_options_SOURCE_DIR}/Index.cmake)
380382

0 commit comments

Comments
 (0)