2 rem This runs Monoburg on the various x86 files when called on Visual Studio
3 echo Running Monoburg on the inssel.brg files...
5 set PATH=%PATH%;%MONO_DEPENDENCIES_PREFIX%\bin
7 if "%2" == "Win32" goto x86
8 if "%2" == "x64" goto x64
11 echo Platform detected is x86...
12 %1 -c 1 -p -e inssel.brg inssel-float.brg inssel-long32.brg inssel-x86.brg -d inssel.h -s inssel.c
15 echo Platform detected is x64...
16 %1 -c 1 -p -e inssel.brg inssel-float.brg inssel-long.brg inssel-amd64.brg -d inssel.h -s inssel.c
19 echo Error: unsupported platform