diff options
| author | gingerBill <bill@gingerbill.org> | 2021-09-17 12:57:52 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-09-17 12:57:52 +0100 |
| commit | f38b7ebf42ff3c38eddded78fad2f04ef82567b7 (patch) | |
| tree | 3434ef98c191938b2c2885253392f2ca89125606 /build_vendor.bat | |
| parent | 4cb7f056440130cb8160a8eaea4a47b270975483 (diff) | |
Begin adding vendor:miniaudio
Diffstat (limited to 'build_vendor.bat')
| -rw-r--r-- | build_vendor.bat | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/build_vendor.bat b/build_vendor.bat index fe1ae660c..95d4bb34d 100644 --- a/build_vendor.bat +++ b/build_vendor.bat @@ -2,9 +2,16 @@ setlocal EnableDelayedExpansion +rem build the .lib files already exist + if not exist "vendor\stb\lib\*.lib" ( - rem build the .lib fiels already exist pushd vendor\stb\src call build.bat popd ) + +if not exist "vendor\miniaudio\lib\*.lib" ( + pushd vendor\miniaudio\src + call build.bat + popd +) |