1
0
Fork 0

Added: project layout

Browse Source
This commit is contained in:
rhuibertsjr 2024-04-12 17:26:08 +02:00
commit 1991eeadc8
6 changed files with 34 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 /I..\src
popd .\build

3
docs/CHANGELOG Normal file
View File

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

5
docs/REFERENCES Normal file
View File

@ -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

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