mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-04 05:09:53 +01:00
Add support for MINGW32 debugger
This commit is contained in:
parent
aec1e5ed86
commit
9e17c807bc
@ -95,6 +95,14 @@
|
|||||||
{
|
{
|
||||||
return IsDebuggerPresent() != 0;
|
return IsDebuggerPresent() != 0;
|
||||||
}
|
}
|
||||||
|
#elif defined(__MINGW32__)
|
||||||
|
extern "C" __declspec(dllimport) int __stdcall IsDebuggerPresent();
|
||||||
|
extern "C" __declspec(dllimport) void __stdcall DebugBreak();
|
||||||
|
#define BreakIntoDebugger() if (IsDebuggerPresent() ) { DebugBreak(); }
|
||||||
|
inline bool isDebuggerActive()
|
||||||
|
{
|
||||||
|
return IsDebuggerPresent() != 0;
|
||||||
|
}
|
||||||
#else
|
#else
|
||||||
inline void BreakIntoDebugger(){}
|
inline void BreakIntoDebugger(){}
|
||||||
inline bool isDebuggerActive() { return false; }
|
inline bool isDebuggerActive() { return false; }
|
||||||
|
Loading…
Reference in New Issue
Block a user