-
Notifications
You must be signed in to change notification settings - Fork 39
Use the same bundle for CI runs as releases #242
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
0251073
30f1276
c3f6227
b4cf4ee
bf8fef1
f74c7e5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -115,6 +115,23 @@ wrap the right CMake preset for your platform and pick sensible defaults. | |
| # ... same suffixes as build.sh | ||
| ``` | ||
|
|
||
| ### Create an SDK bundle | ||
|
|
||
| To create an installable SDK bundle with public headers, runtime libraries, and | ||
| CMake package files, add `--bundle --prefix <install-dir>` to a build command: | ||
|
|
||
| **Linux/Mac:** | ||
|
|
||
| ```bash | ||
| ./build.sh release --bundle --prefix sdk-out/livekit-sdk | ||
| ``` | ||
|
|
||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. maybe add "linux/mac:" before the
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good call, added |
||
| **Windows:** | ||
|
|
||
| ```powershell | ||
| .\build.cmd release --bundle --prefix C:\path\to\livekit-sdk | ||
| ``` | ||
|
|
||
| The build scripts pass an explicit job count to `cmake --build --parallel`. Set | ||
| `CMAKE_BUILD_PARALLEL_LEVEL` to override the auto-detected logical CPU count. | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This might be overkill, open to removing