1
0
Fork 0
hash-table/build.bat

12 lines
147 B
Batchfile
Raw Permalink Normal View History

2024-04-12 15:26:08 +00:00
@echo off
setlocal
pushd "%~dp0"
if not exist ".\build" mkdir ".\build"
pushd .\build
2024-04-13 12:16:20 +00:00
cl /Zi ..\src\main.c /Feapp.exe /Od /nologo
2024-04-12 15:26:08 +00:00
popd .\build