diff options
| author | Jon Turney <jon.turney@dronecode.org.uk> | 2017-04-06 20:20:30 +0100 |
|---|---|---|
| committer | Jon Turney <jon.turney@dronecode.org.uk> | 2017-04-06 22:48:02 +0100 |
| commit | 45a3bd8661210aae1d1baeffbd8ca2b3e8ae0900 (patch) | |
| tree | 660168eff4f358aca1f4bca2f7011000071bbd56 | |
| parent | 4ef4a659f20635d0345dc829772e199cbfb16fbe (diff) | |
| download | meson-45a3bd8661210aae1d1baeffbd8ca2b3e8ae0900.tar.gz | |
Skip objc/nsstring test on Cygwin
GNUstep isn't packaged for Cygwin
| -rw-r--r-- | test cases/objc/2 nsstring/meson.build | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test cases/objc/2 nsstring/meson.build b/test cases/objc/2 nsstring/meson.build index ec496a2ae..a877d7465 100644 --- a/test cases/objc/2 nsstring/meson.build +++ b/test cases/objc/2 nsstring/meson.build @@ -2,6 +2,8 @@ project('nsstring', 'objc') if host_machine.system() == 'darwin' dep = dependency('appleframeworks', modules : 'foundation') +elif host_machine.system() == 'cygwin' + error('MESON_SKIP_TEST GNUstep is not packaged for Cygwin.') else dep = dependency('gnustep') if host_machine.system() == 'linux' and meson.get_compiler('objc').get_id() == 'clang' |
