From b89116a93c642b877b1e45cf97d6cd88621619ba Mon Sep 17 00:00:00 2001 From: Jon Turney Date: Thu, 13 Feb 2020 12:39:25 +0000 Subject: [PATCH] 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(). --- .../failing/81 framework dependency with version/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 714ad3bd1..1ead388a9 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')