mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-10-01 06:55:46 -04:00
27 lines
689 B
Batchfile
27 lines
689 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
REM #############################################
|
|
|
|
CALL ..\..\veilid\dev-setup\setup_windows.bat
|
|
|
|
PUSHD %~dp0\..
|
|
SET VEILIDCHATDIR=%CD%
|
|
POPD
|
|
|
|
IF NOT DEFINED ProgramFiles(x86) (
|
|
echo This script requires a 64-bit Windows Installation. Exiting.
|
|
goto end
|
|
)
|
|
|
|
FOR %%X IN (protoc.exe) DO (SET PROTOC_FOUND=%%~$PATH:X)
|
|
IF NOT DEFINED PROTOC_FOUND (
|
|
echo protobuf compiler ^(protoc^) is required but it's not installed. Install protoc 23.2 or higher. Ensure it is in your path. Aborting.
|
|
echo protoc is available here: https://github.com/protocolbuffers/protobuf/releases/download/v25.3/protoc-25.3-win64.zip
|
|
goto end
|
|
)
|
|
|
|
echo Setup successful
|
|
:end
|
|
ENDLOCAL
|