Separate installers to Full and Iterative

This commit is contained in:
Alex Bezdieniezhnykh
2025-05-07 12:29:43 +03:00
parent f49c4e9d37
commit b937ed8051
11 changed files with 108 additions and 59 deletions
+8 -36
View File
@@ -1,46 +1,18 @@
@echo off
pushd %~dp0
pushd %~dp0..
call build_dotnet
call build\init
call ..\Azaion.Inference\build.cmd
call build\build_dotnet
echo Download onnx model
cd %~dp0
if not exist cdn_manager.exe (
echo Install cdn_manager
call build_cdn_manager
)
call Azaion.Inference\build_inference
call cdn_manager.exe download models
move models ..\dist\
cd..
call ..\gps-denied\image-matcher\build_gps
echo Copy ico
copy logo.ico dist\
echo Copying shared libs
xcopy /E C:\\share\* dist\
set DESTINATION=dist\gps-denied\
if exist %DESTINATION% rmdir /S /Q %DESTINATION%
mkdir %DESTINATION%
echo copy gps denied files
copy ..\gps-denied\image-matcher\release\image-matcher.exe %DESTINATION%
copy ..\gps-denied\.libs\libzmq\build\dist\bin\libzmq-v143-mt-4_3_6.dll %DESTINATION%
copy ..\gps-denied\.libs\onnxruntime\lib\onnxruntime.dll %DESTINATION%
copy ..\gps-denied\.libs\onnxruntime\lib\onnxruntime_providers_cuda.dll %DESTINATION%
copy ..\gps-denied\.libs\onnxruntime\lib\onnxruntime_providers_shared.dll %DESTINATION%
copy ..\gps-denied\.libs\opencv\build\x64\vc16\bin\opencv_world4110.dll %DESTINATION%
mkdir %DESTINATION%\models
copy C:\\share\gps-models\* %DESTINATION%\models
call build\download_models
echo building installer...
iscc build\installer.iss
iscc build\installer.full.iss
iscc build\installer.iterative.iss
popd