summaryrefslogtreecommitdiff
path: root/scripts/project_init.bat
blob: 01d9ba2738a38f6b6a915d0fad04e23038b82855 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@echo off
echo Initializing demo64k dependencies...

if not exist third_party (
  mkdir third_party
)

if not exist third_party\miniaudio.h (
  echo Fetching miniaudio.h...
  powershell -Command "Invoke-WebRequest https://raw.githubusercontent.com/mackron/miniaudio/master/miniaudio.h -OutFile third_party\miniaudio.h"
) else (
  echo miniaudio.h already present.
)

echo Done.