mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Diagnostics
- Display debug/release build type in the diagnostics command.
This commit is contained in:
parent
744f0f55ac
commit
190b6fe635
3 changed files with 11 additions and 0 deletions
|
@ -174,6 +174,14 @@ int CmdDiagnostics::execute (std::string& output)
|
|||
#endif
|
||||
#else
|
||||
<< "n/a"
|
||||
#endif
|
||||
<< "\n";
|
||||
|
||||
out << " Build type: "
|
||||
#ifdef CMAKE_BUILD_TYPE
|
||||
<< CMAKE_BUILD_TYPE
|
||||
#else
|
||||
<< "-"
|
||||
#endif
|
||||
<< "\n\n";
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue