-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
a712701
commit 24bd9c9
Showing
22 changed files
with
117 additions
and
93 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,3 +1,7 @@ | ||
Assets/Rivet/Editor/Native/*.dll filter=lfs diff=lfs merge=lfs -text | ||
Assets/Rivet/Editor/Native/*.so filter=lfs diff=lfs merge=lfs -text | ||
Assets/Rivet/Editor/Native/*.dylib filter=lfs diff=lfs merge=lfs -text | ||
Assets/Rivet/Editor/Native/*.dylib filter=lfs diff=lfs merge=lfs -text | ||
Assets/Rivet/Editor/Native/cli/rivet-aarch64-apple filter=lfs diff=lfs merge=lfs -text | ||
Assets/Rivet/Editor/Native/cli/rivet-linux filter=lfs diff=lfs merge=lfs -text | ||
Assets/Rivet/Editor/Native/cli/rivet-windows.exe filter=lfs diff=lfs merge=lfs -text | ||
Assets/Rivet/Editor/Native/cli/rivet-x86-apple filter=lfs diff=lfs merge=lfs -text |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Git LFS file not shown
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Git LFS file not shown
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Git LFS file not shown
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Git LFS file not shown
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
Assets/Rivet/Editor/Native/librivet_toolchain_ffi_linux_x86_64.so
Git LFS file not shown
63 changes: 0 additions & 63 deletions
63
Assets/Rivet/Editor/Native/librivet_toolchain_ffi_linux_x86_64.so.meta
This file was deleted.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
Assets/Rivet/Editor/Native/librivet_toolchain_ffi_macos_arm64.dylib
Git LFS file not shown
4 changes: 2 additions & 2 deletions
4
Assets/Rivet/Editor/Native/librivet_toolchain_ffi_macos_x86_64.dylib
Git LFS file not shown
4 changes: 2 additions & 2 deletions
4
Assets/Rivet/Editor/Native/rivet_toolchain_ffi_windows_x86_64.dll
Git LFS file not shown
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 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/sh | ||
set -euf | ||
|
||
echo "TODO: Currently only supports macOS ARM64" | ||
|
||
# Build client | ||
(cd $CLI_REPO_PATH && cargo build) | ||
|
||
# macOS (ARM64) | ||
rm -rf ./Assets/Rivet/Editor/Native/librivet_toolchain_ffi_macos_arm64.dylib | ||
cp -r $CLI_REPO_PATH/target/debug/librivet_toolchain_ffi.dylib ./Assets/Rivet/Editor/Native/librivet_toolchain_ffi_macos_arm64.dylib | ||
rm -rf ./Assets/Rivet/Editor/Native/cli/rivet-aarch64-apple | ||
cp -r $CLI_REPO_PATH/target/debug/rivet ./Assets/Rivet/Editor/Native/cli/rivet-aarch64-apple |