Add valgrind to makefile (#70)

This commit is contained in:
Bailey Thompson
2020-08-07 16:37:12 -04:00
committed by GitHub
parent 83bc687e93
commit f56b347098
2 changed files with 8 additions and 0 deletions

5
.gitignore vendored
View File

@@ -3,3 +3,8 @@ cmake-build-debug/*
docs/*
containers.a
containers.so
CMakeCache.txt
CMakeFiles/*
Containers
Containers.cbp
cmake_install.cmake

View File

@@ -25,3 +25,6 @@ clean:
header:
python3 compile_headers.py $(version)
valgrind:
cmake -DCMAKE_BUILD_TYPE=Debug -G "CodeBlocks - Unix Makefiles" . ; cmake --build . --target Containers -- -j 2 ; valgrind --leak-check=yes ./Containers