Compare commits

..

2 Commits

Author SHA1 Message Date
f45ab91998 chore: bump version to alpha-0.0.3
All checks were successful
Linux arm64 / Build (push) Successful in 1m22s
2024-04-13 17:31:44 +02:00
f3554454a9 run with valgrind 2024-04-13 17:31:16 +02:00
2 changed files with 10 additions and 2 deletions

2
Blitz

Submodule Blitz updated: 43510ea568...026a841a04

View File

@@ -1,4 +1,4 @@
add_rules("mode.debug", "mode.release")
add_rules("mode.debug", "mode.release", "mode.valgrind")
add_includedirs("Blitz/include")
set_languages("c++17")
@@ -9,3 +9,11 @@ target("BlitzConsole")
set_kind("binary")
add_deps("Blitz")
add_files("src/*.cpp")
-- Valgrind test
if is_mode("valgrind") then
on_run(function (target)
os.execv("valgrind", {"-s", "--leak-check=full", target:targetfile()})
end)
end