fix 5.19am things

This commit is contained in:
Oliver 2021-08-15 16:30:21 +02:00
parent 1074aed28b
commit b53b9d44e1
Signed by untrusted user: okaestne
GPG Key ID: 06A81B143EA9588F
2 changed files with 2 additions and 9 deletions

3
.gitignore vendored
View File

@ -1,6 +1,3 @@
# meson build dir
build/
Log.o
# for test

View File

@ -1,17 +1,13 @@
inc = include_directories('.')
lib_okaestne_log = both_libraries('okaestne-log',
lib_okaestne_log = static_library('okaestne-log',
'Log.cpp',
include_directories: inc,
cpp_args: ['-O2', '-std=c++11', '-Wall', '-Wextra', '-pedantic-errors', '-g']
)
# to depend on in other projects:
okaestne_log_static_dep = declare_dependency(
link_with: lib_okaestne_log,
include_directories: inc
)
okaestne_log_shared_dep = declare_dependency(
okaestne_log_dep = declare_dependency(
link_with: lib_okaestne_log,
include_directories: inc
)