Skip to content

Commit

Permalink
meson.build: remove vs dep
Browse files Browse the repository at this point in the history
  • Loading branch information
WolframRhodium committed Mar 24, 2024
1 parent 234209d commit 6bb626a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ project('vs-placebo', ['c', 'cpp'],
win32 = host_machine.system() == 'windows' or host_machine.system() == 'cygwin'

placebo = dependency('libplacebo', required: true, version: '>=5.229.0', static: win32)
vapoursynth_dep = dependency('vapoursynth', static: win32).partial_dependency(includes: true, compile_args: true)
dovi = dependency('dovi', required: false)

use_dovi = dovi.found()
Expand All @@ -27,9 +26,8 @@ sources = []
subdir('src')

shared_module('vs_placebo', sources,
dependencies: [placebo, vapoursynth_dep, dovi],
dependencies: [placebo, dovi],
link_with: [p2p],
name_prefix: 'lib',
install_dir : join_paths(vapoursynth_dep.get_variable(pkgconfig: 'libdir'), 'vapoursynth'),
install: true
)

0 comments on commit 6bb626a

Please sign in to comment.