diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2020-02-13 12:39:25 +0000 |
---|---|---|
committer | Jon Turney <jon.turney@dronecode.org.uk> | 2020-02-28 11:52:36 +0000 |
commit | b89116a93c642b877b1e45cf97d6cd88621619ba (patch) | |
tree | b18f6b3d700ef0a0e07939939185f7e7def8b896 | |
parent | bb7eb41c0456f6607c6ed7f449526f6173160f1a (diff) | |
download | meson-b89116a93c642b877b1e45cf97d6cd88621619ba.zip meson-b89116a93c642b877b1e45cf97d6cd88621619ba.tar.gz meson-b89116a93c642b877b1e45cf97d6cd88621619ba.tar.bz2 |
Fix framework version failing test
This test was never testing what it claimed to test, simply failing with
"ERROR: No C-like compilers are available, cannot find the framework"
because a C-like language is missing from project().
-rw-r--r-- | test cases/failing/81 framework dependency with version/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/failing/81 framework dependency with version/meson.build b/test cases/failing/81 framework dependency with version/meson.build index 714ad3b..1ead388 100644 --- a/test cases/failing/81 framework dependency with version/meson.build +++ b/test cases/failing/81 framework dependency with version/meson.build @@ -1,4 +1,4 @@ -project('framework dependency with version') +project('framework dependency with version', 'c') # do individual frameworks have a meaningful version to test? And multiple frameworks might be listed... # otherwise we're not on OSX and this will definitely fail dep = dependency('appleframeworks', modules: 'foundation', version: '>0') |