umpire: disable building docs (#27434)

This commit is contained in:
Chris White 2021-11-15 02:01:20 -08:00 committed by GitHub
parent 100b212538
commit 7b4c08db21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -192,6 +192,7 @@ def initconfig_package_entries(self):
entries.append(cmake_cache_option(
"ENABLE_BENCHMARKS", 'tests=benchmarks' in spec))
entries.append(cmake_cache_option("ENABLE_EXAMPLES", '+examples' in spec))
entries.append(cmake_cache_option("ENABLE_DOCS", False))
entries.append(cmake_cache_option("BUILD_SHARED_LIBS", '+shared' in spec))
entries.append(cmake_cache_option("ENABLE_TESTS", 'tests=none' not in spec))