initial commit

This commit is contained in:
2024-06-16 22:35:36 +01:00
commit 5184b36853
6 changed files with 209 additions and 0 deletions

2
misc/bdebug.bat Normal file
View File

@@ -0,0 +1,2 @@
call build
devenv .\build\main.exe

2
misc/brun.bat Normal file
View File

@@ -0,0 +1,2 @@
call build
.\build\main.exe

6
misc/build.bat Normal file
View File

@@ -0,0 +1,6 @@
@echo off
mkdir .\build
pushd .\build
pwd
cl -FC -Zi ..\src\main.cpp user32.lib Gdi32.lib
popd

4
misc/shell.bat Normal file
View File

@@ -0,0 +1,4 @@
@echo off
call "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars64.bat"
set path=C:\source\repos\handmade\misc;%path%
cd C:\source\repos\handmade\