From b0e1fadb3d2197c940cb1901b1cd71fa0e814fed Mon Sep 17 00:00:00 2001 From: rhuibertsjr Date: Sun, 21 Apr 2024 11:04:21 +0200 Subject: [PATCH] Added: project layout --- .gitignore | 1 + build.bat | 11 +++++++++++ docs/CHANGELOG | 3 +++ src/main.c | 5 +++++ start.bat | 9 +++++++++ 5 files changed, 29 insertions(+) create mode 100644 .gitignore create mode 100644 build.bat create mode 100644 docs/CHANGELOG create mode 100644 src/main.c create mode 100644 start.bat 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