Initial commit from Weevil

This commit is contained in:
Eric Ratliff
2026-02-03 21:57:40 -06:00
commit a5506dea02
15 changed files with 617 additions and 0 deletions

20
build.bat Normal file
View File

@@ -0,0 +1,20 @@
@echo off
setlocal enabledelayedexpansion
REM Read SDK path from config
for /f "tokens=2 delims==" %%a in ('findstr /c:"ftc_sdk_path" .weevil.toml') do (
set SDK_DIR=%%a
set SDK_DIR=!SDK_DIR:"=!
set SDK_DIR=!SDK_DIR: =!
)
if not defined SDK_DIR (
echo Error: Could not read FTC SDK path from .weevil.toml
exit /b 1
)
echo Building project...
echo Using FTC SDK: %SDK_DIR%
call gradlew.bat buildApk
echo.
echo Build complete!