This repository has been archived on 2024-05-28. You can view files and clone it, but cannot push or open issues or pull requests.
try_engine/meson.build
2024-04-01 11:32:37 +03:00

64 lines
1.4 KiB
Meson
Executable File

project(
'try_engine',
'cpp',
version : '1.0.0',
default_options : [
'warning_level=1',
'optimization=3',
'cpp_std=c++20',
])
add_project_arguments (
'-Wall',
'-Wpedantic',
'-Wno-shadow',
'-Wno-unused-but-set-variable',
'-Wno-comment',
'-Wno-unused-parameter',
'-Wno-unused-value',
'-Wno-unused-header',
'-Wno-missing-field-initializers',
'-Wno-narrowing',
'-Wno-deprecated-enum-enum-conversion',
'-Wno-volatile',
'-Wno-format-security',
'-Wno-switch',
'-Wno-ignored-attributes',
language: 'cpp'
)
#############################################################
#args = ['-lglfw', '-ldl', '-lGL', '-lpthread', '-lX11', '-lXxf86vm', '-lXrandr', '-lXi']
args = [
'-lopenal',
'-lsndfile',
'-lmpg123',
]
deps = [
dependency('TBB'),
dependency('OpenCV'),
dependency('uuid'),
dependency('threads'),
dependency('opengl'),
subproject('glfw').get_variable('glfw_dep'),
subproject('glad').get_variable('glad_dep'),
subproject('hack').get_variable('hack_dep'),
subproject('imgui').get_variable('imgui_dep'),
subproject('glm').get_variable('glm_dep'),
subproject('nlohmann_json').get_variable('nlohmann_json_dep'),
subproject('taglib').get_variable('taglib_dep'),
dependency('openal'),
dependency('libmpg123'),
dependency('sndfile'),
]
inc = []
#############################################################
subdir('src')
subdir('bin')
#subdir('tests')