fix: noconfirm auto-selects first AUR match

This commit is contained in:
2026-05-08 11:01:02 +01:00
parent d39cdc3fd9
commit 153cca6132
8056 changed files with 1983098 additions and 779 deletions
@@ -0,0 +1,13 @@
project('CMake mix', ['c', 'cpp'])
if not add_languages('objc', required : false)
error('MESON_SKIP_TEST: No ObjC compiler')
endif
cm = import('cmake')
sub_pro = cm.subproject('cmTest')
sub_dep = sub_pro.dependency('cmTest', include_type: 'system')
exe1 = executable('exe1', ['main.c'], dependencies: [sub_dep])
test('test1', exe1)