Skip to content

๐Ÿงช Examples

CrashCatch comes with real-world usage examples to demonstrate how easy it is to integrate.

All examples are located in the examples/ folder.


๐Ÿ“ Included Examples

๐Ÿ”น Example_ZeroConfig.cpp

Uses the #define CRASHCATCH_AUTO_INIT macro to auto-initialize CrashCatch with no config.

๐Ÿ”น Example_OneLiner.cpp

Initializes CrashCatch at runtime with CrashCatch::enable().

๐Ÿ”น Example_FullConfig.cpp

Demonstrates full customization: - appVersion - buildConfig - onCrash lambda - message box

๐Ÿ”น Example_ThreadCrash.cpp

Simulates a crash in a background thread to test thread safety.

๐Ÿ”น Example_divideByZero.cpp

Triggers a divide-by-zero exception to test how CrashCatch handles runtime errors.


๐Ÿงฐ Build the Examples (via CMake)

mkdir build && cd build
cmake ..
cmake --build .

Each example is compiled as its own executable:

Example_ZeroConfig.exe
Example_OneLiner.exe
Example_FullConfig.exe
Example_ThreadCrash.exe
Example_divideByZero.exe


Each example will generate .dmp and .txt crash logs in the ./crash_dumps/ folder when triggered.