Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix help string for SRF_BUILD_DOCS #202

Merged
1 commit merged into from
Oct 31, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ list(APPEND CMAKE_MESSAGE_CONTEXT "srf")
# Options of the form: SRF_USE_XXX, enable linting or alter the environment and are OFF by default
option(BUILD_SHARED_LIBS "Default value for whether or not to build shared or static libraries" ON)
option(SRF_BUILD_BENCHMARKS "Whether or not to build SRF benchmarks" OFF)
option(SRF_BUILD_DOCS "Enable building the python bindings for Srf" OFF)
option(SRF_BUILD_DOCS "Enable building of API documentation" OFF)
option(SRF_BUILD_LIBRARY "Whether the entire SRF library should be built. If set to OFF, only the pieces needed for a target will be built. Set to ON if installing the library" ON)
option(SRF_BUILD_PYTHON "Enable building the python bindings for Srf" ON)
option(SRF_BUILD_TESTS "Whether or not to build SRF tests" ON)
Expand Down