diff options
author | Marvin Scholz <epirat07@gmail.com> | 2022-03-08 22:04:51 +0100 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2022-03-08 15:29:41 -0800 |
commit | f5176f01b9e0e9623a749082b556ed7d87ce74dd (patch) | |
tree | c466f54d6346619f534ef08bc9b54a510547c040 /test cases | |
parent | e257a870fe5e676c55a2282b0e7fc9be34bba2ac (diff) | |
download | meson-f5176f01b9e0e9623a749082b556ed7d87ce74dd.zip meson-f5176f01b9e0e9623a749082b556ed7d87ce74dd.tar.gz meson-f5176f01b9e0e9623a749082b556ed7d87ce74dd.tar.bz2 |
tests: bitcode: add missing b_bitcode option
The bitcode test did not actually have bitcode enabled,
making it not really useful.
Diffstat (limited to 'test cases')
-rw-r--r-- | test cases/osx/7 bitcode/meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test cases/osx/7 bitcode/meson.build b/test cases/osx/7 bitcode/meson.build index f94bf9d..50ce3f2 100644 --- a/test cases/osx/7 bitcode/meson.build +++ b/test cases/osx/7 bitcode/meson.build @@ -1,4 +1,5 @@ -project('bitcode test', 'c', 'objc', 'objcpp') +project('bitcode test', 'c', 'objc', 'objcpp', + default_options : ['b_bitcode=true']) both_libraries('alib', 'libfoo.m') shared_module('amodule', 'libfoo.m') |