Fixed linking with 1.33
This commit is contained in:
parent
65ca06b1c3
commit
54c884450e
2 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue