KWIML: Avoid MSVC linker warning about not using C++ runtime

Teach KWIML_test to use part of the C++ runtime library.  Otherwise the
linker complains:

  warning LNK4089: all references to 'MSVCP71.dll' discarded by /OPT:REF
This commit is contained in:
Brad King 2011-11-21 11:02:26 -05:00
parent ae7cf91b13
commit b421c2477c
1 changed files with 6 additions and 0 deletions

View File

@ -11,6 +11,12 @@
============================================================================*/
#include <string>
#if defined(_MSC_VER) && defined(NDEBUG)
// Use C++ runtime to avoid linker warning:
// warning LNK4089: all references to 'MSVCP71.dll' discarded by /OPT:REF
std::string test_include_CXX_use_stl_string;
#endif
/* Test KWIML header inclusion after above system headers. */
#include "test.h"
#include KWIML_HEADER(ABI.h)