commit 1991eeadc8edc5f48492f8ce6baac7a1b8380388 Author: rhuibertsjr Date: Fri Apr 12 17:26:08 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..af3c29b --- /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 /I..\src + +popd .\build diff --git a/docs/CHANGELOG b/docs/CHANGELOG new file mode 100644 index 0000000..2628180 --- /dev/null +++ b/docs/CHANGELOG @@ -0,0 +1,3 @@ +12-04-2024 René Huiberts + + Added: project layout diff --git a/docs/REFERENCES b/docs/REFERENCES new file mode 100644 index 0000000..5d5419c --- /dev/null +++ b/docs/REFERENCES @@ -0,0 +1,5 @@ + +=== REFERENCES ================================================================= + + [1] Strager (2023) " Faster than Rust and C++: the PERFECT hash table" + https://www.youtube.com/watch?v=DMQ_HcNSOAI \ No newline at end of file diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..7ad85f2 --- /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..1aad84c --- /dev/null +++ b/start.bat @@ -0,0 +1,9 @@ +@echo off +setlocal +pushd "%~dp0" + +pushd build + +.\app.exe + +popd