summaryrefslogtreecommitdiff
path: root/src/codec
diff options
context:
space:
mode:
authorAndrew Opalach <andrew@akon.city> 2024-11-13 21:46:10 -0500
committerAndrew Opalach <andrew@akon.city> 2024-11-13 21:46:10 -0500
commit58d38d767442c83e31ae6dbaea7b1fc8ccb00633 (patch)
treeb5b6e3bb845bc7b18ff2fc41fe60ad09ad30537d /src/codec
parent8c996a5b597bd1cd9c188a0e61eae1ff718c8ca2 (diff)
downloadcamu-58d38d767442c83e31ae6dbaea7b1fc8ccb00633.tar.gz
camu-58d38d767442c83e31ae6dbaea7b1fc8ccb00633.tar.bz2
camu-58d38d767442c83e31ae6dbaea7b1fc8ccb00633.zip
Cleanup build
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'src/codec')
-rw-r--r--src/codec/meson.build6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/codec/meson.build b/src/codec/meson.build
index fa5ff9a..2a72b55 100644
--- a/src/codec/meson.build
+++ b/src/codec/meson.build
@@ -77,4 +77,8 @@ if get_option('codecs').contains('wuffs')
codec_deps += [wuffs_codec]
endif
-codecs = declare_dependency(dependencies: [stela, codec_deps])
+if not no_video
+ codec_deps += [stela]
+endif
+
+codecs = declare_dependency(dependencies: codec_deps)