Skip to content

Commit

Permalink
Add build-debug option to Makefile so we dont forget the proper incan…
Browse files Browse the repository at this point in the history
…tations

Signed-off-by: Rob Ambalu <robert.ambalu@point72.com>
  • Loading branch information
robambalu committed May 6, 2024
1 parent a32cef3 commit a33aeb0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit a33aeb0

Please sign in to comment.