mirror of https://github.com/odrling/Aegisub
37 lines
829 B
Meson
37 lines
829 B
Meson
project('BestSource', 'cpp',
|
|
default_options: ['buildtype=release', 'b_ndebug=if-release', 'cpp_std=c++14'],
|
|
meson_version: '>=0.48.0'
|
|
)
|
|
|
|
cmake = import('cmake')
|
|
|
|
sources = [
|
|
'src/audiosource.cpp',
|
|
'src/videosource.cpp',
|
|
'src/SrcAttribCache.cpp',
|
|
'src/BSRational.cpp',
|
|
]
|
|
|
|
deps = [
|
|
dependency('libavcodec'),
|
|
dependency('libavformat'),
|
|
dependency('libavutil'),
|
|
]
|
|
|
|
jansson_dep = dependency('jansson', version: '>= 2.7', required: false)
|
|
|
|
if jansson_dep.found()
|
|
deps += jansson_dep
|
|
else
|
|
jansson = cmake.subproject('jansson')
|
|
deps += jansson.dependency('jansson')
|
|
endif
|
|
|
|
bs_lib = static_library('bestsource', sources,
|
|
dependencies: deps,
|
|
gnu_symbol_visibility: 'hidden'
|
|
)
|
|
|
|
bestsource_dep = declare_dependency(link_with: bs_lib, include_directories: include_directories('src'))
|
|
|