aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/216 custom target input extracted objects/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/common/216 custom target input extracted objects/meson.build')
-rw-r--r--test cases/common/216 custom target input extracted objects/meson.build18
1 files changed, 18 insertions, 0 deletions
diff --git a/test cases/common/216 custom target input extracted objects/meson.build b/test cases/common/216 custom target input extracted objects/meson.build
new file mode 100644
index 0000000..8f8b22f
--- /dev/null
+++ b/test cases/common/216 custom target input extracted objects/meson.build
@@ -0,0 +1,18 @@
+project('custom target input extracted objects', 'c')
+
+if meson.backend() == 'xcode'
+ error('MESON_SKIP_TEST: sometimes Xcode puts object files in weird paths and we can not extract them.')
+endif
+
+
+checker = find_program('check_object.py')
+
+cc = meson.get_compiler('c').cmd_array().get(-1)
+
+subdir('libdir')
+
+custom_target('check',
+ input: objlib.extract_objects('source.c'),
+ output: 'objcheck',
+ command: [checker, '@INPUT@', '@OUTPUT@'],
+ build_by_default: true)