KCrash
Support for application crash analysis and bug report from apps.
Using the Module
Using a Qt module's C++ API requires linking against the module library, either directly or through other dependencies. Several build tools have dedicated support for this, including CMake and qmake (joke).
Building with CMake
Use the find_package()
command to locate the needed module component in the Qt6
package:
find_package(Qt6 REQUIRED COMPONENTS Crash)
target_link_libraries(mytarget PRIVATE Qt6::Crash)
For more details, see the Build with CMake overview.
API Reference
Licenses
TODO