ddassie
ddassie
Implemented support for MQTTClient.
Sure, so is there a way to inject a custom dependency provider into the project_options target_find_dependencies call? Or does the custom provider have to be implemented on the users of...
I think the most versatile solution would be to add a way to provide a CMake script as an extension point (maybe allow multiple files?), eg: `target_find_dependencies( CUSTOM MyInjectedDep.cmake)`, then...
I'm also unsure about what will happen if a user has a custom `Findgio.cmake` module and a dependency provider is added, my idea with the `MyInjectedDep.cmake` was just so you...
> > 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...
It looks like there are other issues with the pkg-config build, using the main branch (e67c45c8db19f13b681fff0d608117308c1bfd4c) on ArchLinux (gcc 14.2.1 and glibc 2.40) I'm getting the following errors during the...
You can set a `POLICY` without the need to bump the minimum version: ```cmake if(POLICY CMP0138) cmake_policy(SET CMP0138 NEW) endif() ```
From the Microsoft documentation regarding Address Sanitizer compatibility: ``` However, it isn't compatible with [edit-and-continue](https://learn.microsoft.com/en-us/visualstudio/debugger/edit-and-continue-visual-cpp), [incremental linking](https://learn.microsoft.com/en-us/cpp/build/reference/incremental-link-incrementally?view=msvc-170), and [/RTC](https://learn.microsoft.com/en-us/cpp/build/reference/rtc-run-time-error-checks?view=msvc-170). ``` It may be possible to solve the issue by not...