fix meson

This commit is contained in:
chatlanin 2024-07-18 10:58:47 +03:00
parent 2c6d37ccea
commit 8ee6a67ef4
2 changed files with 3 additions and 7 deletions

View File

@ -15,7 +15,6 @@ add_project_arguments (
'-Wno-comment',
'-Wno-unused-parameter',
'-Wno-unused-value',
'-Wno-unused-header',
'-Wno-missing-field-initializers',
'-Wno-narrowing',
'-Wno-deprecated-enum-enum-conversion',
@ -28,8 +27,6 @@ add_project_arguments (
language: 'cpp'
)
#############################################################
#args = ['-lglfw', '-ldl', '-lGL', '-lpthread', '-lX11', '-lXxf86vm', '-lXrandr', '-lXi']
args = []
deps = []
@ -49,6 +46,6 @@ deps = [
subdir('src')
subdir('tests')
message('==================================================================================================================')
message('=== т.к. мы не включаем зависимости в проект, котрый пушм на гит, то их нужно все подключить в deps (см. выше) ===')
message('==================================================================================================================')
message('===================================================================================================================')
message('=== т.к. мы не включаем зависимости в проект, котрый пушим на гит, то их нужно все подключить в deps (см. выше) ===')
message('===================================================================================================================')

View File

@ -19,7 +19,6 @@ lib = library(
meson.project_name(),
include_directories : inc,
sources: [headers, sources],
dependencies : deps,
cpp_args: args
)