build_vendor.bat 358 B

123456789101112131415161718192021222324
  1. @echo off
  2. setlocal EnableDelayedExpansion
  3. rem build the .lib files already exist
  4. if not exist "vendor\stb\lib\*.lib" (
  5. pushd vendor\stb\src
  6. call build.bat
  7. popd
  8. )
  9. if not exist "vendor\miniaudio\lib\*.lib" (
  10. pushd vendor\miniaudio\src
  11. call build.bat
  12. popd
  13. )
  14. if not exist "vendor\cgltf\lib\*.lib" (
  15. pushd vendor\cgltf\src
  16. call build.bat
  17. popd
  18. )