aboutsummaryrefslogtreecommitdiff
path: root/test cases
diff options
context:
space:
mode:
authorAdam C. Foltzer <acfoltzer@galois.com>2017-06-14 08:39:41 -0700
committerAdam C. Foltzer <acfoltzer@galois.com>2017-06-14 08:39:41 -0700
commit69b18cf7e95f101e78c434811a3a02ff219235be (patch)
tree2a38fd483aa05abdffcc209fcea73c1e26290bb8 /test cases
parentbdd4c45b173055931db1c758cd7f016693d3a924 (diff)
downloadmeson-69b18cf7e95f101e78c434811a3a02ff219235be.zip
meson-69b18cf7e95f101e78c434811a3a02ff219235be.tar.gz
meson-69b18cf7e95f101e78c434811a3a02ff219235be.tar.bz2
rename `crate_type` to `rust_crate_type` per @TingPing
Diffstat (limited to 'test cases')
-rw-r--r--test cases/rust/5 polyglot static/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/rust/5 polyglot static/meson.build b/test cases/rust/5 polyglot static/meson.build
index 8eb2d53..76dc790 100644
--- a/test cases/rust/5 polyglot static/meson.build
+++ b/test cases/rust/5 polyglot static/meson.build
@@ -5,6 +5,6 @@ deps = [
dependency('threads'),
]
-l = static_library('stuff', 'stuff.rs', crate_type : 'staticlib', install : true)
+l = static_library('stuff', 'stuff.rs', rust_crate_type : 'staticlib', install : true)
e = executable('prog', 'prog.c', dependencies: deps, link_with : l, install : true)
test('polyglottest', e)