fix compiler warnings
Some checks failed
Test and Deploy / test (push) Failing after 14s
Test and Deploy / docs (push) Failing after 15s

This commit is contained in:
2024-08-13 12:57:36 -07:00
parent 34b21c494b
commit 4b59b4789c
5 changed files with 21 additions and 7 deletions

13
Makefile Normal file
View File

@ -0,0 +1,13 @@
CMAKE_OPTS=-DCMAKE_EXPORT_COMPILE_COMMANDS=1
all:
mkdir -p build
cd build && \
cmake ${CMAKE_OPTS} .. && \
$(MAKE) && \
cp compile_commands.json ..
clean:
rm -rf build
rm -f compile_commands.json