From ca5db71e8215a6c5660fe03088a6d7349f55f817 Mon Sep 17 00:00:00 2001 From: BobTheBob <32057864+BobTheBob9@users.noreply.github.com> Date: Sat, 17 Jul 2021 22:33:00 +0100 Subject: add support for custom convars and concommands --- .../include/spdlog/details/windows_include.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 NorthstarDedicatedTest/include/spdlog/details/windows_include.h (limited to 'NorthstarDedicatedTest/include/spdlog/details/windows_include.h') diff --git a/NorthstarDedicatedTest/include/spdlog/details/windows_include.h b/NorthstarDedicatedTest/include/spdlog/details/windows_include.h new file mode 100644 index 00000000..6a2f14f9 --- /dev/null +++ b/NorthstarDedicatedTest/include/spdlog/details/windows_include.h @@ -0,0 +1,11 @@ +#pragma once + +#ifndef NOMINMAX +#define NOMINMAX // prevent windows redefining min/max +#endif + +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#endif + +#include -- cgit v1.2.3