From da496227cd55eefb5b8010931bb877d13192f872 Mon Sep 17 00:00:00 2001 From: Thomas-Otavio Peulen Date: Thu, 14 Nov 2024 21:57:24 +0100 Subject: [PATCH] Build Python docstrings --- conda-recipe/bld.bat | 1 + conda-recipe/build.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/conda-recipe/bld.bat b/conda-recipe/bld.bat index b8b75124..e0421546 100755 --- a/conda-recipe/bld.bat +++ b/conda-recipe/bld.bat @@ -20,6 +20,7 @@ cmake .. -G "NMake Makefiles" ^ -DCMAKE_SWIG_OUTDIR="%SP_DIR%" ^ -DPython_ROOT_DIR="%PREFIX%\bin" ^ -DBUILD_LIBRARY=OFF ^ + -DBUILD_PYTHON_DOCS=ON ^ -DWITH_AVX=OFF ^ -DBoost_USE_STATIC_LIBS=OFF diff --git a/conda-recipe/build.sh b/conda-recipe/build.sh index 20ceea0d..7033d887 100755 --- a/conda-recipe/build.sh +++ b/conda-recipe/build.sh @@ -14,6 +14,7 @@ cmake -S .. -B . \ -DWITH_AVX=OFF \ -DBoost_USE_STATIC_LIBS=OFF \ -DPython_ROOT_DIR="${PREFIX}/bin" \ + -DBUILD_PYTHON_DOCS=ON \ -G Ninja \ ${CONFIG_ARGS}