aboutsummaryrefslogtreecommitdiff
path: root/disas/meson.build
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2023-05-03 08:23:26 +0100
committerRichard Henderson <richard.henderson@linaro.org>2023-05-11 09:49:25 +0100
commitf779026478773da05e3f5b4621dddc5c6d6542dc (patch)
treeeb62e7b408f34bb1ad65b9fc5df2633e9cb89b9c /disas/meson.build
parent692aba8d769585a6cd9e37c101af73dbd1482f7f (diff)
downloadqemu-f779026478773da05e3f5b4621dddc5c6d6542dc.zip
qemu-f779026478773da05e3f5b4621dddc5c6d6542dc.tar.gz
qemu-f779026478773da05e3f5b4621dddc5c6d6542dc.tar.bz2
disas: Move disas.c to disas/
Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20230503072331.1747057-80-richard.henderson@linaro.org>
Diffstat (limited to 'disas/meson.build')
-rw-r--r--disas/meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/disas/meson.build b/disas/meson.build
index c865bdd..cbf6315 100644
--- a/disas/meson.build
+++ b/disas/meson.build
@@ -10,4 +10,6 @@ common_ss.add(when: 'CONFIG_RISCV_DIS', if_true: files('riscv.c'))
common_ss.add(when: 'CONFIG_SH4_DIS', if_true: files('sh4.c'))
common_ss.add(when: 'CONFIG_SPARC_DIS', if_true: files('sparc.c'))
common_ss.add(when: 'CONFIG_XTENSA_DIS', if_true: files('xtensa.c'))
-common_ss.add(when: capstone, if_true: files('capstone.c'))
+common_ss.add(when: capstone, if_true: [files('capstone.c'), capstone])
+
+specific_ss.add(files('disas.c'), capstone)