blob: 9a9bce5fe5091d66f1aaba87e5f669bdb83c6e79 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- tools/meson.build.orig 2024-08-21 11:25:15 UTC
+++ tools/meson.build
@@ -1,3 +1,4 @@
+if not get_option('tools').disabled() and not static_build
gst_tools = {
'gst-transcoder': {
'files': files('gst-transcoder.c', 'utils.c'),
@@ -5,7 +6,6 @@ gst_tools = {
},
}
-if not get_option('tools').disabled() and not static_build
foreach tool, data: gst_tools
exe_name = '@0@-@1@'.format(tool, api_version)
executable(exe_name,
@@ -21,4 +21,4 @@ if not get_option('tools').disabled() and not static_b
install_man(data.get('man_page'))
endif
endforeach
-endif
\ No newline at end of file
+endif
|