Echo Compiler Warnings to Console
Posted: Wed Jul 22, 2009 4:58 pm
Hi all,
I've done a few searches, so far nothing, so it's Stupid Question Time (but I'll bet it's there somewhere)
What I want to do is echo compiler warnings to the console.
I've been playing with KingLestat's excellent code from
viewtopic.php?t=27417
Now I'm running on a locked-down system, and sometimes the MD5 File Checksum fails (Probably due to Windows Security/File Encryption).
So can I program something like this to check the results as it runs?
I don't a want massive effort, just a quick Yes or No if anyone knows for sure.
I've done a few searches, so far nothing, so it's Stupid Question Time (but I'll bet it's there somewhere)
What I want to do is echo compiler warnings to the console.
I've been playing with KingLestat's excellent code from
viewtopic.php?t=27417
Now I'm running on a locked-down system, and sometimes the MD5 File Checksum fails (Probably due to Windows Security/File Encryption).
So can I program something like this to check the results as it runs?
Code: Select all
[psuedo]
CompilerIf CompilerWarning
PrintN(strFilename + Chr(9) + CompilerWarningText
Endif
[/pseudo]