fix: noconfirm auto-selects first AUR match
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
project('cmake_set_opt', ['c', 'cpp'])
|
||||
|
||||
import('cmake').subproject('cmOpts', cmake_options: '-DSOME_CMAKE_VAR=something')
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
cmake_minimum_required(VERSION 3.7)
|
||||
project(testPro)
|
||||
|
||||
if(NOT "${SOME_CMAKE_VAR}" STREQUAL "something")
|
||||
message(FATAL_ERROR "Setting the CMake var failed")
|
||||
endif()
|
||||
|
||||
if(NOT "${CMAKE_PREFIX_PATH}" STREQUAL "val1;val2")
|
||||
message(FATAL_ERROR "Setting the CMAKE_PREFIX_PATH failed '${CMAKE_PREFIX_PATH}'")
|
||||
endif()
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"matrix": {
|
||||
"options": {
|
||||
"cmake_prefix_path": [
|
||||
{ "val": ["val1", "val2"] }
|
||||
],
|
||||
"build.cmake_prefix_path": [
|
||||
{ "val": ["val1", "val2"] }
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user