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,11 @@
#include <iostream>
#include "libA.hpp"
#include "libB.hpp"
using namespace std;
int main(void) {
cout << getLibStr() << endl;
cout << getZlibVers() << endl;
return EXIT_SUCCESS;
}
@@ -0,0 +1,17 @@
project('cmake_object_lib_test', 'cpp', default_options: ['cpp_std=c++11'])
if meson.is_cross_build()
error('MESON_SKIP_TEST this test does not cross compile correctly.')
endif
cm = import('cmake')
sub_pro = cm.subproject('cmObjLib')
sub_sha = sub_pro.dependency('lib_sha')
sub_sta = sub_pro.dependency('lib_sta')
exe_sha = executable('shared', ['main.cpp'], dependencies: [sub_sha])
exe_sta = executable('static', ['main.cpp'], dependencies: [sub_sta])
test('test1', exe_sha)
test('test1', exe_sta)
@@ -0,0 +1,18 @@
cmake_minimum_required(VERSION 3.7)
project(cmObject CXX)
add_executable(genC genC.cpp)
add_custom_command(
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/libC.cpp" "${CMAKE_CURRENT_BINARY_DIR}/libC.hpp"
COMMAND genC
WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}"
)
include_directories("${CMAKE_CURRENT_BINARY_DIR}")
add_library(lib_obj OBJECT libA.cpp libB.cpp "${CMAKE_CURRENT_BINARY_DIR}/libC.cpp" "${CMAKE_CURRENT_BINARY_DIR}/libC.hpp")
add_library(lib_sha SHARED $<TARGET_OBJECTS:lib_obj>)
add_library(lib_sta STATIC $<TARGET_OBJECTS:lib_obj>)
target_compile_definitions(lib_obj PRIVATE "-DBUILD_AS_OBJ=1")
@@ -0,0 +1,31 @@
#include <iostream>
#include <fstream>
using namespace std;
int main() {
ofstream hpp("libC.hpp");
ofstream cpp("libC.cpp");
if (!hpp.is_open() || !cpp.is_open()) {
cerr << "Failed to open 'libC.hpp' or 'libC.cpp' for writing" << endl;
return 1;
}
hpp << R"cpp(
#pragma once
#include <string>
std::string getGenStr();
)cpp";
cpp << R"cpp(
#include "libC.hpp"
std::string getGenStr(void) {
return "GEN STR";
}
)cpp";
return 0;
}
@@ -0,0 +1,9 @@
#include "libA.hpp"
#if not BUILD_AS_OBJ
#error "BUILD_AS_OBJ was not defined"
#endif
std::string getLibStr(void) {
return "Hello World";
}
@@ -0,0 +1,16 @@
#pragma once
#include <string>
#if defined _WIN32 || defined __CYGWIN__
#define DLL_PUBLIC __declspec(dllexport)
#else
#if defined __GNUC__
#define DLL_PUBLIC __attribute__ ((visibility("default")))
#else
#pragma message ("Compiler does not support symbol visibility.")
#define DLL_PUBLIC
#endif
#endif
std::string DLL_PUBLIC getLibStr();
@@ -0,0 +1,6 @@
#include "libB.hpp"
#include "libC.hpp"
std::string getZlibVers(void) {
return getGenStr();
}
@@ -0,0 +1,16 @@
#pragma once
#include <string>
#if defined _WIN32 || defined __CYGWIN__
#define DLL_PUBLIC __declspec(dllexport)
#else
#if defined __GNUC__
#define DLL_PUBLIC __attribute__ ((visibility("default")))
#else
#pragma message ("Compiler does not support symbol visibility.")
#define DLL_PUBLIC
#endif
#endif
std::string DLL_PUBLIC getZlibVers();