mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Add warning message during pch compile
Add warning message when binary is compiled in debug/profile mode; these should never be released.
This commit is contained in:
parent
da0153a3bd
commit
52c14c5590
@ -1,6 +1,10 @@
|
||||
#pragma once
|
||||
#pragma message("Pre-compiling headers.\n")
|
||||
|
||||
#if defined(_DEBUG) || defined(_PROFILE)
|
||||
#pragma message ("Profiling is turned on; do not release this binary!\n")
|
||||
#endif // _DEBUG || _PROFILE
|
||||
|
||||
#define WIN32_LEAN_AND_MEAN // Prevent winsock2 redefinition.
|
||||
#include <windows.h>
|
||||
#include <WinSock2.h>
|
||||
|
Loading…
x
Reference in New Issue
Block a user