From 52c14c5590f8b8c79e5f8c11f46b097f868ff327 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sat, 18 Mar 2023 09:08:29 +0100 Subject: [PATCH] Add warning message during pch compile Add warning message when binary is compiled in debug/profile mode; these should never be released. --- r5dev/core/stdafx.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/r5dev/core/stdafx.h b/r5dev/core/stdafx.h index c102233b..915d9053 100644 --- a/r5dev/core/stdafx.h +++ b/r5dev/core/stdafx.h @@ -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 #include