Packaging for v1.0 files
parent
0cdaa09dc8
commit
efefb46699
@ -0,0 +1 @@
|
||||
cargo build --release --target x86_64-pc-windows-msvc
|
||||
@ -1,11 +1,11 @@
|
||||
cargo build --release
|
||||
|
||||
Copy-Item -Force "./target/release/martian-chess.exe" "./target/release/MartianChess.exe"
|
||||
Copy-Item -Force "./target/x86_64-pc-windows-msvc/release/martian-chess.exe" "./platforms/windows/MartianChess.exe"
|
||||
Copy-Item -Force "./lib/windows/*" "./platforms/windows/"
|
||||
Copy-Item -Force -Recursive "./assets" "./platforms/windows"
|
||||
|
||||
$compress = @{
|
||||
Path = "./target/release/MartianChess.exe", "./fmod_vc.lib", "./fmodstudio_vc.lib", "fmodstudio.dll", "fmod.dll", "./assets"
|
||||
Path = "./platforms/windows/*"
|
||||
CompressionLevel = "Optimal"
|
||||
DestinationPath = "./packages/MartianChess-windows.zip"
|
||||
DestinationPath = "./packages/MartianChess-v1.0-windows.zip"
|
||||
}
|
||||
|
||||
Compress-Archive @compress
|
||||
Loading…
Reference in New Issue