12 lines
139 B
Batchfile
12 lines
139 B
Batchfile
@echo off
|
|
setlocal
|
|
pushd "%~dp0"
|
|
|
|
if not exist ".\build" mkdir ".\build"
|
|
|
|
pushd .\build
|
|
|
|
cl ..\src\main.c /Feapp.exe /nologo
|
|
|
|
popd .\build
|