diff options
author | David Robillard <d@drobilla.net> | 2023-05-03 11:48:53 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-05-03 11:58:03 -0400 |
commit | bedaf7d16c3537319bc1415a6c5977bd1fe079dc (patch) | |
tree | 6583d5764b0caeb72c8904d4622c6fa82d889d6d /examples/meson.build | |
parent | 9edad13229ded1f380d974d297df5e2ebfdbb13c (diff) | |
download | pugl-bedaf7d16c3537319bc1415a6c5977bd1fe079dc.tar.gz pugl-bedaf7d16c3537319bc1415a6c5977bd1fe079dc.tar.bz2 pugl-bedaf7d16c3537319bc1415a6c5977bd1fe079dc.zip |
Use consistent names for internal meson dependencies
Diffstat (limited to 'examples/meson.build')
-rw-r--r-- | examples/meson.build | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/meson.build b/examples/meson.build index 2b4e5f1..b1ac7a6 100644 --- a/examples/meson.build +++ b/examples/meson.build @@ -113,7 +113,7 @@ else foreach example : stub_examples source = [example] target = example.split('.')[0] - dependencies = [pugl_dep, stub_backend_dep] + dependencies = [pugl_dep, pugl_stub_dep] defines = [] executable( @@ -131,7 +131,7 @@ else foreach example : gl_examples source = [example] target = example.split('.')[0] - dependencies = [pugl_dep, gl_backend_dep] + dependencies = [pugl_dep, pugl_gl_dep] defines = [] if target == 'pugl_shader_demo' @@ -139,7 +139,7 @@ else dependencies += [dl_dep] defines += ['-D_POSIX_C_SOURCE=200809L'] elif target == 'pugl_print_events' - dependencies += [stub_backend_dep] + dependencies += [pugl_stub_dep] elif target == 'pugl_cpp_demo' dependencies += [puglpp_dep] endif @@ -163,7 +163,7 @@ else target, example, c_args: example_defines + example_c_args + cairo_args, - dependencies: [pugl_dep, cairo_backend_dep], + dependencies: [pugl_dep, pugl_cairo_dep], include_directories: includes, ) endforeach @@ -174,7 +174,7 @@ else foreach example : vulkan_examples source = [example] target = example.split('.')[0] - dependencies = [dl_dep, vulkan_backend_dep] + dependencies = [dl_dep, pugl_vulkan_dep] defines = [] if target == 'pugl_vulkan_cpp_demo' |