add matrix and matrix log

This commit is contained in:
chatlanin
2022-03-23 22:02:17 +03:00
parent 6a58a1ac55
commit 1c83c3e87c
11 changed files with 313 additions and 100 deletions

View File

@@ -7,13 +7,21 @@ project(
)
add_project_arguments (
'-pedantic',
'-Wpedantic',
'-Wshadow',
'-Wno-comment',
'-Wno-gnu-zero-variadic-macro-arguments',
#'-Wno-gnu-zero-variadic-macro-arguments',
'-Wunused-but-set-variable',
language: 'cpp'
)
compiler = meson.get_compiler('cpp')
if compiler.get_id() == 'gcc'
message('Compiler: GCC')
elif compiler.get_id() == 'clang'
message('Compiler: LLVM/clang')
endif
args = []
deps = []