FeignClaims

Results 24 comments of FeignClaims

Here's my extra warnings: ``` CLANG_WARNINGS -Wfloat-equal # warn on comparing floating point with == or != -Wglobal-constructors # warn on declare global or static variables with dynamic constructors -Wmisleading-indentation...

> Literally, it is caused by incompatibility with gcc-13, you need to upgrade to gcc-14 To clarify, the issue might be caused by the update of XCode. Executing `brew reinstall...

Added these functions to test projects.

Changed test projects based on this feature and tested well, ready to merge.

> Add an example or document the use of add_test() with multiple args please. There's already an example in the document: https://github.com/FeignClaims/project_options/blob/9170c3b7b5e68840d01d79beed3b85948cd71d0e/src/Tests.cmake#L350-L355 Additionally, I added a use of `add_executable_test()` with...

I’m not quite sure what your question is. Are you trying to `target_find_dependencies( PUBLIC gio)` in which `gio` is a library that should be found by `pkg_check_modules`? If that's the...

The situation is that PkgConfig dosen't provide find_package provider, so you have to. I think this won't break conan as both cmake-conan and vcpkg use this approach and project_options works...

> Is this fixed after #257? @aminya Possibly not. Instead of allowing custom `find_package` args like #257, this issue is about extending `target_find_dependencies` to be able to find dependencies that...

> add a way to provide a CMake script as an extension point (maybe allow multiple files?), eg: `target_find_dependencies( CUSTOM MyInjectedDep.cmake)` After setting `cmake_language(SET_DEPENDENCY_PROVIDER...)`, all `find_package` will try to use...

You could have `MyInjectedDep.cmake` without modifying `target_find_dependencies`. Just use `include(MyInjectedDep.cmake)` and `install(FILES MyInjectedDep.cmake)`. My question here is that `target_find_dependencies` is to set dependencies for a single target, so maybe a...