mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 21:56:31 +00:00
26 lines
468 B
Batchfile
26 lines
468 B
Batchfile
setlocal enabledelayedexpansion
|
|
@echo off
|
|
set CURRENT_DIR=%cd%
|
|
cd /d %~dp0..
|
|
|
|
call build\init
|
|
|
|
call build\build_dotnet
|
|
|
|
call Azaion.Loader\build_loader
|
|
|
|
call Azaion.Inference\build_inference
|
|
|
|
call ..\gps-denied\image-matcher\build_gps
|
|
|
|
call build\download_models
|
|
|
|
echo building and upload iterative installer...
|
|
iscc build\installer.iterative.iss
|
|
call build\upload.cmd "suite"
|
|
|
|
echo building full installer
|
|
iscc build\installer.full.iss
|
|
|
|
cd /d %CURRENT_DIR%
|
|
echo Done! |