2024-04-21 09:04:21 +00:00
|
|
|
@echo off
|
|
|
|
setlocal
|
|
|
|
pushd "%~dp0"
|
|
|
|
|
|
|
|
if not exist ".\build" mkdir ".\build"
|
|
|
|
|
|
|
|
pushd .\build
|
|
|
|
|
2024-04-25 17:34:37 +00:00
|
|
|
set link= user32.lib
|
|
|
|
|
|
|
|
cl /Zi /W4 ..\src\main.c /Feapp.exe /Od /nologo /link %link%
|
2024-04-21 09:04:21 +00:00
|
|
|
|
|
|
|
popd .\build
|