1
0
Fork 0
eightysix/build.bat

14 lines
193 B
Batchfile

@echo off
setlocal
pushd "%~dp0"
if not exist ".\build" mkdir ".\build"
pushd .\build
set links= kernel32.lib
cl /Zi ..\src\eightysix.c /Feeightysix.exe /nologo /link %links%
popd .\build