You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note that once we have #840 we might be able to do something in our own macro to include / exclude methods via a macro / feature / version detection etc.
Hi,
Qt5 and Qt6 must have new methods or method removed.
We must be able to use a #cfg(...) for adding it in specific qt_version_major
Idea is using specific mod
For example:
#[cfg(qt_version_major = "6")]
#[cxx::bridge]
mod ffi_qt_6 {
...
}
At the moment it doesn't build ad it seems that qt_version_major is not forwarded by the build system.
We really need to add it if we want to support new qt6 methods.
The text was updated successfully, but these errors were encountered: