This repository has been archived by the owner on Jan 29, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
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
7 changed files
with
391 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,34 @@ | ||
# cusf_launcher | ||
|
||
Requirements: | ||
Godot v4.3 : | ||
https://github.com/godotengine/godot/releases/tag/4.3-stable | ||
## Requirements: | ||
* Godot v4.3 : https://github.com/godotengine/godot/releases/tag/4.3-stable | ||
* Rust/Cargo : https://rustup.rs/ | ||
|
||
Command line build instructions: | ||
If cross-compiling for Windows, mingw-64 is required. | ||
|
||
Linux: | ||
## Command line build instructions: | ||
|
||
`godot --headless --path cusf_launcher/ --export-release "Linux" cusf_launcher.x86_64` | ||
Linux: | ||
``` | ||
pushd cusf_launcher_crypto | ||
cargo build --release --target x86_64-unknown-linux-gnu | ||
popd | ||
godot --headless --path cusf_launcher/ --export-release "Linux" cusf_launcher.x86_64 | ||
``` | ||
|
||
Windows: | ||
|
||
`godot --headless --path cusf_launcher/ --export-release "Windows" cusf_launcher.exe` | ||
``` | ||
pushd cusf_launcher_crypto | ||
RUSTFLAGS="-C linker=/usr/bin/x86_64-w64-mingw32-gcc" cargo build --release --target x86_64-pc-windows-gnu | ||
popd | ||
godot --headless --path cusf_launcher/ --export-release "Windows" cusf_launcher.exe | ||
``` | ||
|
||
Mac: | ||
|
||
`godot --headless --path cusf_launcher/ --export-release "Mac" cusf_launcher.dmg` | ||
|
||
``` | ||
pushd cusf_launcher_crypto | ||
cargo build --release --target x86_64-apple-darwin | ||
popd | ||
godot --headless --path cusf_launcher/ --export-release "Mac" cusf_launcher.dmg` | ||
``` | ||
|
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,14 @@ | ||
[configuration] | ||
entry_symbol = "gdext_cusf_launcher_crypto_init" | ||
compatibility_minimum = 4.1 | ||
reloadable = true | ||
|
||
[libraries] | ||
linux.debug.x86_64 = "res://../cusf_launcher_crypto/target/x86_64-unknown-linux-gnu/debug/libcusf_launcher_crypto.so" | ||
linux.release.x86_64 = "res://../cusf_launcher_crypto/target/x86_64-unknown-linux-gnu/release/libcusf_launcher_crypto.so" | ||
windows.debug.x86_64 = "res://../cusf_launcher_crypto/target/x86_64-pc-windows-gnu/debug/cusf_launcher_crypto.dll" | ||
windows.release.x86_64 = "res://../cusf_launcher_crypto/target/x86_64-pc-windows-gnu/release/cusf_launcher_crypto.dll" | ||
macos.debug = "res://../cusf_launcher_crypto/target/x86_64-apple-darwin/debug/libcusf_launcher_crypto.dylib" | ||
macos.release = "res://../cusf_launcher_crypto/target/x86_64-apple-darwin/release/libcusf_launcher_crypto.dylib" | ||
macos.debug.arm64 = "res://../cusf_launcher_crypto/target/aarch64-apple-darwin/debug/libcusf_launcher_crypto.dylib" | ||
macos.release.arm64 = "res://../cusf_launcher_crypto/target/aarch64-apple-darwin/release/libcusf_launcher_crypto.dylib" |
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 @@ | ||
/target |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.