summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2021-04-28 18:18:24 +0200
committerBastien Nocera <hadess@hadess.net>2021-04-30 17:50:27 +0200
commit725b53fa80746497bf47c845ae21e6bd0fb31110 (patch)
tree016addf342a33275540bc46a450f565e922630e9
parent4ced4b94d2ab1befaaedd8b900161f26c9b265b8 (diff)
downloadtotem-725b53fa80746497bf47c845ae21e6bd0fb31110.tar.gz
backend: Always build test application
-rw-r--r--src/backend/meson.build26
1 files changed, 12 insertions, 14 deletions
diff --git a/src/backend/meson.build b/src/backend/meson.build
index fbf74258b..0a47fbd9f 100644
--- a/src/backend/meson.build
+++ b/src/backend/meson.build
@@ -95,17 +95,15 @@ libbacon_video_widget_dep = declare_dependency(
sources: enum_sources
)
-if have_easy_codec
- backend_test = 'bvw-test'
-
- executable(
- backend_test,
- backend_test + '.c',
- include_directories: libbacon_video_widget_incs,
- dependencies: libbacon_video_widget_dep,
- c_args: libbacon_video_widget_cflags + [
- '-DLOGO_PATH="@0@"'.format(join_paths(totem_pkgdatadir, meson.project_name(), 'totem_logo.png')),
- '-DG_LOG_DOMAIN="@0@"'.format(backend_test)
- ]
- )
-endif
+backend_test = 'bvw-test'
+
+executable(
+ backend_test,
+ backend_test + '.c',
+ include_directories: libbacon_video_widget_incs,
+ dependencies: libbacon_video_widget_dep,
+ c_args: libbacon_video_widget_cflags + [
+ '-DLOGO_PATH="@0@"'.format(join_paths(totem_pkgdatadir, meson.project_name(), 'totem_logo.png')),
+ '-DG_LOG_DOMAIN="@0@"'.format(backend_test)
+ ]
+)