Added: build.bat, start.bat and program entry point.
This commit is contained in:
parent
df79a585c0
commit
ffa04f05c5
|
@ -0,0 +1 @@
|
|||
build/
|
|
@ -0,0 +1,11 @@
|
|||
@echo off
|
||||
setlocal
|
||||
pushd "%~dp0"
|
||||
|
||||
if not exist ".\build" mkdir ".\build"
|
||||
|
||||
pushd .\build
|
||||
|
||||
cl ..\src\main.c /Feapp.exe /nologo
|
||||
|
||||
popd .\build
|
|
@ -0,0 +1,5 @@
|
|||
int
|
||||
main(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user