1
0
Fork 0

Added: project layout

Browse Source
This commit is contained in:
rhuibertsjr 2024-04-21 11:04:21 +02:00
commit b0e1fadb3d
5 changed files with 29 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
build/

11
build.bat Normal file
View File

@ -0,0 +1,11 @@
@echo off
setlocal
pushd "%~dp0"
if not exist ".\build" mkdir ".\build"
pushd .\build
cl /Zi ..\src\main.c /Feapp.exe /Od /nologo
popd .\build

3
docs/CHANGELOG Normal file
View File

@ -0,0 +1,3 @@
21-04-2024 René Huiberts <rhuibertsjr@gmail.com>
Added: project layout

5
src/main.c Normal file
View File

@ -0,0 +1,5 @@
int
main(void)
{
return 0;
}

9
start.bat Normal file
View File

@ -0,0 +1,9 @@
@echo off
setlocal
pushd "%~dp0"
pushd build
.\app.exe
popd