aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test cases/d/14 dub with deps/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/test cases/d/14 dub with deps/meson.build b/test cases/d/14 dub with deps/meson.build
index e0bd847..08f3080 100644
--- a/test cases/d/14 dub with deps/meson.build
+++ b/test cases/d/14 dub with deps/meson.build
@@ -1,4 +1,4 @@
-project('dub-with-deps-example', ['c', 'd'])
+project('dub-with-deps-example', ['d'])
dub_exe = find_program('dub', required : false)
if not dub_exe.found()
@@ -17,7 +17,7 @@ arch = host_machine.cpu_family()
if host_machine.system() == 'windows'
# check if toolchain is 32bits
- sz = meson.get_compiler('c').sizeof('void*')
+ sz = meson.get_compiler('d').sizeof('void*')
if arch == 'x86' or sz == 4
arch = 'x86_mscoff'
endif