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:
Kawe Mazidjatari 2023-03-18 09:08:29 +01:00
parent da0153a3bd
commit 52c14c5590

View File

@ -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>