fix: noconfirm auto-selects first AUR match
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
int main() {
|
||||
#ifdef NDEBUG
|
||||
// NDEBUG is defined
|
||||
return 0;
|
||||
#else
|
||||
// NDEBUG is not defined
|
||||
return 1;
|
||||
#endif
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
project('msvc_ndebug', 'cpp',
|
||||
default_options : [ 'b_ndebug=true' ]
|
||||
)
|
||||
|
||||
exe = executable('exe', 'main.cpp')
|
||||
|
||||
test('ndebug', exe)
|
||||
Reference in New Issue
Block a user