Skip to content

Commit

Permalink
chore: v0.27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Mar 31, 2023
1 parent 2472491 commit 3267638
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,12 @@ cmake_minimum_required(VERSION 3.20)
# If commented, the latest supported standard for your compiler is automatically set.
# set(CMAKE_CXX_STANDARD 20)
# Add project_options v0.26.3
# https://github.com/aminya/project_options
# Add project_options from 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.26.3.zip)
FetchContent_Declare(_project_options URL
https://github.com/aminya/project_options/archive/refs/tags/v0.27.0.zip
)
FetchContent_MakeAvailable(_project_options)
include(${_project_options_SOURCE_DIR}/Index.cmake)
Expand Down Expand Up @@ -237,7 +238,7 @@ target_link_system_libraries(my_header_lib
# Package the project
package_project(
TARGETS my_header_lib project_options project_warnings
TARGETS my_header_lib myproject_project_options myproject_project_warnings
)
```

Expand Down
2 changes: 1 addition & 1 deletion docs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.25)

project(
project_options_docs
VERSION 0.26.3
VERSION 0.27.0
DESCRIPTION "Documentation"
LANGUAGES NONE)

Expand Down
7 changes: 4 additions & 3 deletions docs/src/dynamic_project_options.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,12 @@ cmake_minimum_required(VERSION 3.20)
# If commented, the latest supported standard for your compiler is automatically set.
# set(CMAKE_CXX_STANDARD 20)
# Add project_options v0.26.3
# https://github.com/aminya/project_options
# Add project_options from 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.26.3.zip)
FetchContent_Declare(_project_options URL
https://github.com/aminya/project_options/archive/refs/tags/v0.27.0.zip
)
FetchContent_MakeAvailable(_project_options)
include(${_project_options_SOURCE_DIR}/Index.cmake)
Expand Down
7 changes: 4 additions & 3 deletions docs/src/project_options_example.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@ cmake_minimum_required(VERSION 3.20)
# If commented, the latest supported standard for your compiler is automatically set.
# set(CMAKE_CXX_STANDARD 20)
# Add project_options v0.26.3
# https://github.com/aminya/project_options
# Add project_options from 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.26.3.zip)
FetchContent_Declare(_project_options URL
https://github.com/aminya/project_options/archive/refs/tags/v0.27.0.zip
)
FetchContent_MakeAvailable(_project_options)
include(${_project_options_SOURCE_DIR}/Index.cmake)
Expand Down

0 comments on commit 3267638

Please sign in to comment.