Fixed linking with 1.33

This commit is contained in:
Pauli Nieminen 2008-09-12 12:32:57 +00:00
parent 65ca06b1c3
commit 54c884450e
2 changed files with 5 additions and 0 deletions

View file

@ -7,6 +7,7 @@ from glob import glob
Import("*")
env.Append(CPPDEFINES = "$EXTRA_DEFINE")
test_env.Append(CPPDEFINES = "$EXTRA_DEFINE")
#color_range.cpp should be removed, but game_config depends on it.
#game_config has very few things that are needed elsewhere, it should be

View file

@ -14,7 +14,11 @@
#include <boost/version.hpp>
#define BOOST_TEST_MODULE wesnoth unit tests master suite
#if BOOST_VERSION < 103400
#include <boost/test/auto_unit_test.hpp>
#else
#include <boost/test/unit_test.hpp>
#endif
#include <boost/test/unit_test_monitor.hpp>
#include <boost/test/detail/unit_test_parameters.hpp>
#include <boost/test/results_reporter.hpp>