diff --git a/Makefile b/Makefile index 2b0177ef..1b858c9b 100644 --- a/Makefile +++ b/Makefile @@ -24,6 +24,9 @@ develop: requirements ## install dependencies and build library build: ## build the library python setup.py build build_ext --inplace -- -- -j$(NPROC) +build-debug: ## build the library ( DEBUG ) - May need a make clean when switching from regular build to build-debug and vice versa + SKBUILD_CONFIGURE_OPTIONS="" DEBUG=1 python setup.py build build_ext --inplace -- -- -j$(NPROC) + build-conda: ## build the library in Conda CSP_USE_VCPKG=0 python setup.py build build_ext --inplace -- -- -j$(NPROC)