-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
16 additions
and
2 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
Before building, make sure you run this command first. | ||
# `pdal-sys` Notes | ||
|
||
git submodule update --init --recursive vendor | ||
We currently vendor the [PDAL CAPI](https://github.com/PDAL/CAPI) source code in the `vendor` directory via a git submodule. | ||
Part of this is due to it being a package not readily available in most package managers, | ||
and part of it is due to the fact that we're relying on tweaks to a fork that are not rolled into the official release yet. | ||
One of those tweaks is to compile the CAPI as a static library, so as to be bundled inside with the final binary. | ||
|
||
## Setup | ||
|
||
Before building, you may need to this command first. | ||
|
||
git submodule update --init --recursive vendor | ||
|
||
The `build.rs` file attempts to do this for you, but it may not work in all cases. |