From 3b3950227e0ee9fcfb1e7f8782f52a613a778ce7 Mon Sep 17 00:00:00 2001 From: kervala Date: Mon, 21 May 2012 10:04:00 +0200 Subject: [PATCH] Changed: Don't include local files in PCH --- code/ryzom/common/src/game_share/scenario_entry_points.cpp | 1 + code/ryzom/common/src/game_share/stdpch.h | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/code/ryzom/common/src/game_share/scenario_entry_points.cpp b/code/ryzom/common/src/game_share/scenario_entry_points.cpp index 81dd3e6e2..36b3a6aea 100644 --- a/code/ryzom/common/src/game_share/scenario_entry_points.cpp +++ b/code/ryzom/common/src/game_share/scenario_entry_points.cpp @@ -19,6 +19,7 @@ //----------------------------------------------------------------------------- #include "stdpch.h" +#include "utils.h" #include "nel/misc/file.h" #include "nel/misc/command.h" diff --git a/code/ryzom/common/src/game_share/stdpch.h b/code/ryzom/common/src/game_share/stdpch.h index 18f6f00e0..f14a31608 100644 --- a/code/ryzom/common/src/game_share/stdpch.h +++ b/code/ryzom/common/src/game_share/stdpch.h @@ -66,4 +66,8 @@ #include -#include "utils.h" +#ifdef NL_OS_WINDOWS +# define NOMINMAX +# include +# include +#endif