mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-28 17:04:34 +00:00
18 lines
267 B
Batchfile
18 lines
267 B
Batchfile
@echo off
|
|
|
|
setlocal EnableDelayedExpansion
|
|
|
|
rem build the .lib files already exist
|
|
|
|
if not exist "vendor\stb\lib\*.lib" (
|
|
pushd vendor\stb\src
|
|
call build.bat
|
|
popd
|
|
)
|
|
|
|
if not exist "vendor\miniaudio\lib\*.lib" (
|
|
pushd vendor\miniaudio\src
|
|
call build.bat
|
|
popd
|
|
)
|