mirror of
https://github.com/agersant/polaris
synced 2024-11-14 03:17:06 +00:00
33 lines
1.2 KiB
PowerShell
33 lines
1.2 KiB
PowerShell
"Compiling resource file"
|
|
RC /fo res\windows\application\application.res res\windows\application\application.rc
|
|
|
|
""
|
|
"Compiling executable"
|
|
cargo rustc --release --features "ui" -- -C link-args="/SUBSYSTEM:WINDOWS /ENTRY:mainCRTStartup res\windows\application\application.res"
|
|
|
|
""
|
|
"Creating output directory"
|
|
New-Item .\release\tmp -type directory -Force | Out-Null
|
|
Remove-Item -Recurse .\release\tmp\*
|
|
|
|
""
|
|
"Copying to output directory"
|
|
Copy-Item .\res\windows\libeay32.dll .\release\tmp\
|
|
Copy-Item .\res\windows\libeay32md.dll .\release\tmp\
|
|
Copy-Item .\res\windows\installer\license.rtf .\release\tmp\
|
|
Copy-Item .\res\windows\installer\banner.bmp .\release\tmp\
|
|
Copy-Item .\res\windows\installer\dialog.bmp .\release\tmp\
|
|
Copy-Item .\target\release\polaris.exe .\release\tmp\
|
|
Copy-Item .\res\default_config.toml .\release\tmp\polaris.toml
|
|
Copy-Item .\web\ .\release\tmp\ -recurse
|
|
|
|
""
|
|
"Creating installer"
|
|
candle -wx -arch x64 -out .\release\tmp\installer.wixobj .\res\windows\installer\installer.wxs
|
|
light -wx -spdb -ext WixUIExtension -out .\release\Polaris_0.1.0.msi .\release\tmp\installer.wixobj
|
|
|
|
"Cleaning up"
|
|
Remove-Item -Recurse .\release\tmp
|
|
|
|
""
|
|
Read-Host -Prompt "All clear! Press Enter to exit"
|