Day 30, starting with anti-aliasing, removed all the instancing stuff.
This commit is contained in:
parent
6ffc6cb4ca
commit
9ce217e0e2
129 changed files with 16052 additions and 0 deletions
30
30-anti-aliasing/Makefile
Normal file
30
30-anti-aliasing/Makefile
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
all: build
|
||||
|
||||
reset:
|
||||
powershell -executionpolicy bypass .\scripts\reset_build.ps1
|
||||
|
||||
build:
|
||||
meson compile -j 4 -C builddir
|
||||
|
||||
release_build:
|
||||
meson --wipe builddir -Db_ndebug=true --buildtype release
|
||||
meson compile -j 4 -C builddir
|
||||
|
||||
debug_build:
|
||||
meson setup --wipe builddir -Db_ndebug=true --buildtype debugoptimized
|
||||
meson compile -j 4 -C builddir
|
||||
|
||||
run: test
|
||||
./builddir/hellogl.exe
|
||||
|
||||
test: build
|
||||
./builddir/fuc2it
|
||||
|
||||
debug_test: build
|
||||
gdb --nx -x .gdbinit --ex run --args builddir/fuc2it.exe
|
||||
|
||||
debug_run: build
|
||||
gdb --nx -x .gdbinit --batch --ex run --ex bt --ex q --args builddir/hellogl.exe
|
||||
|
||||
clean:
|
||||
meson compile --clean -C builddir
|
||||
Loading…
Add table
Add a link
Reference in a new issue