initial commit
This commit is contained in:
commit
fb266af3e5
4 changed files with 444 additions and 0 deletions
19
.justfile
Normal file
19
.justfile
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# Scry build recipes
|
||||
|
||||
# Default recipe - show available commands
|
||||
default:
|
||||
@just --list
|
||||
|
||||
# Build both standard and embedded versions for all platforms
|
||||
build apk="delver.apk":
|
||||
rm -rf dist
|
||||
dotnet publish -c Release -r win-x64 -o dist/win-x64/standard
|
||||
dotnet publish -c Release -r win-x64 -p:EmbeddedApk={{apk}} -o dist/win-x64/embedded
|
||||
dotnet publish -c Release -r linux-x64 -o dist/linux-x64/standard
|
||||
dotnet publish -c Release -r linux-x64 -p:EmbeddedApk={{apk}} -o dist/linux-x64/embedded
|
||||
dotnet publish -c Release -r osx-x64 -o dist/osx-x64/standard
|
||||
dotnet publish -c Release -r osx-x64 -p:EmbeddedApk={{apk}} -o dist/osx-x64/embedded
|
||||
|
||||
# Clean build artifacts
|
||||
clean:
|
||||
rm -rf bin obj dist
|
||||
Loading…
Add table
Add a link
Reference in a new issue