14 lines
186 B
Batchfile
14 lines
186 B
Batchfile
@echo off
|
|
setlocal
|
|
pushd "%~dp0"
|
|
|
|
if not exist ".\build" mkdir ".\build"
|
|
|
|
pushd .\build
|
|
|
|
set link= user32.lib
|
|
|
|
cl /Zi /W4 ..\src\main.c /Feapp.exe /Od /nologo /link %link%
|
|
|
|
popd .\build
|