mirror of
https://github.com/rive-app/rive-cpp.git
synced 2026-01-18 13:11:19 +01:00
9 lines
221 B
Batchfile
9 lines
221 B
Batchfile
@echo off
|
|
REM use fxc because sometimes msbuild is there but fxc is not. The opposite appears to never be true
|
|
WHERE fxc >nul 2>&1
|
|
IF %ERRORLEVEL% NEQ 0 (
|
|
call %~p0\setup_windows_dev.bat
|
|
)
|
|
cd %CD%
|
|
sh build_rive.sh %*
|