From fe535d28cd5dbf82c6ef1e1eae022be602ade37b Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Tue, 8 Aug 2023 12:54:08 -0700 Subject: [PATCH] chore: v0.31.0 [skip ci] --- README.md | 3 ++- docs/src/project_options_example.md | 3 ++- src/DynamicProjectOptions.cmake | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d6d9135d..e9b20b7a 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ endif() # 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) -set(PROJECT_OPTIONS_VERSION "v0.30.0") +set(PROJECT_OPTIONS_VERSION "v0.31.0") FetchContent_Declare( _project_options URL https://github.com/aminya/project_options/archive/refs/tags/${PROJECT_OPTIONS_VERSION}.zip) @@ -106,6 +106,7 @@ if(FEATURE_TESTS) ENABLE_SANITIZER_MEMORY) endif() +# Enable doxgen for the docs if(FEATURE_DOCS) set(ENABLE_DOXYGEN "ENABLE_DOXYGEN") endif() diff --git a/docs/src/project_options_example.md b/docs/src/project_options_example.md index 39032f5e..04c22eca 100644 --- a/docs/src/project_options_example.md +++ b/docs/src/project_options_example.md @@ -20,7 +20,7 @@ endif() # 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) -set(PROJECT_OPTIONS_VERSION "v0.30.0") +set(PROJECT_OPTIONS_VERSION "v0.31.0") FetchContent_Declare( _project_options URL https://github.com/aminya/project_options/archive/refs/tags/${PROJECT_OPTIONS_VERSION}.zip) @@ -59,6 +59,7 @@ if(FEATURE_TESTS) ENABLE_SANITIZER_MEMORY) endif() +# Enable doxgen for the docs if(FEATURE_DOCS) set(ENABLE_DOXYGEN "ENABLE_DOXYGEN") endif() diff --git a/src/DynamicProjectOptions.cmake b/src/DynamicProjectOptions.cmake index d4996820..02499e5b 100644 --- a/src/DynamicProjectOptions.cmake +++ b/src/DynamicProjectOptions.cmake @@ -55,7 +55,7 @@ Here is an example of how to use ``dynamic_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) - set(PROJECT_OPTIONS_VERSION "v0.30.0") + set(PROJECT_OPTIONS_VERSION "v0.31.0") FetchContent_Declare( _project_options URL https://github.com/aminya/project_options/archive/refs/tags/${PROJECT_OPTIONS_VERSION}.zip)