From 8b280fac5aa37f611ece5c94167e2a5ca03360fd Mon Sep 17 00:00:00 2001 From: Daniel Wallin Date: Fri, 19 Sep 2008 13:43:07 +0200 Subject: [PATCH] Disabled dll-interface warning on MSVC. Disabled warning C4251 on MSVC. This makes it a clean build. --- Jamroot | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jamroot b/Jamroot index 597d347..0151a12 100755 --- a/Jamroot +++ b/Jamroot @@ -89,7 +89,8 @@ SOURCES = usage-requirements = lua msvc,shared:LUABIND_IMPORT=__declspec(dllimport) - msvc,shared:LUABIND_EXPORT=__declspec(dllexport) ; + msvc,shared:LUABIND_EXPORT=__declspec(dllexport) + msvc,shared:/wd4251 ; lib luabind : src/$(SOURCES) -- 2.11.4.GIT