Welcome to mirror list, hosted at ThFree Co, Russian Federation.

autogen.bat - gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 098a5aa56bd1caf0c461cce0c8ea120428d5047f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@echo off
REM Run this to set up the build system: configure, makefiles, etc.

setlocal enabledelayedexpansion

REM Parse the real autogen.sh script for version
for /F "tokens=4 delims= " %%A in ('findstr "download_model.sh" autogen.sh') do (
    set "model=%%A"
)
REM Remove trailing ")" character from the model variable
set "model=%model:~0,-1%"

call dnn\download_model.bat %model%

echo Updating build configuration files, please wait....