commit b0e1fadb3d2197c940cb1901b1cd71fa0e814fed Author: rhuibertsjr Date: Sun Apr 21 11:04:21 2024 +0200 Added: project layout diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d163863 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +build/ \ No newline at end of file diff --git a/build.bat b/build.bat new file mode 100644 index 0000000..549c7c1 --- /dev/null +++ b/build.bat @@ -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 diff --git a/docs/CHANGELOG b/docs/CHANGELOG new file mode 100644 index 0000000..c703d66 --- /dev/null +++ b/docs/CHANGELOG @@ -0,0 +1,3 @@ +21-04-2024 René Huiberts + + Added: project layout diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..77bc677 --- /dev/null +++ b/src/main.c @@ -0,0 +1,5 @@ +int +main(void) +{ + return 0; +} diff --git a/start.bat b/start.bat new file mode 100644 index 0000000..0585435 --- /dev/null +++ b/start.bat @@ -0,0 +1,9 @@ +@echo off +setlocal +pushd "%~dp0" + +pushd build + +.\app.exe + +popd