-
Notifications
You must be signed in to change notification settings - Fork 321
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Migrate to scikit-build-core First iteration * Make targets * Editable works again! * Avoid installing eigen/tbb into python package * Fix Werror builds * Add pybind11 to build system requirements * Move requirements up * Add min cmake * This is not required anymore * Add CCache support. Now it make a lot of sense * Get all dependencies * Fix pyproject.toml * Add also ninja and cmake for editable mode * Now install is the default target * Not required anymore * fix readme --------- Co-authored-by: tizianoGuadagnino <frevo93@gmail.com>
- Loading branch information
1 parent
acfd813
commit 1b954d5
Showing
13 changed files
with
105 additions
and
206 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
.PHONY: cpp | ||
|
||
editable: | ||
SETUPTOOLS_ENABLE_FEATURES="legacy-editable" pip install --verbose --prefix=$(shell python3 -m site --user-base) --editable ./python/ | ||
|
||
install: | ||
@pip install --verbose ./python/ | ||
|
||
uninstall: | ||
@pip -v uninstall kiss_icp | ||
|
||
editable: | ||
@pip install scikit-build-core pyproject_metadata pathspec pybind11 ninja cmake | ||
@pip install --no-build-isolation -ve ./python/ | ||
|
||
cpp: | ||
@cmake -Bbuild cpp/kiss_icp/ | ||
@cmake --build build -j$(nproc --all) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.