mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
410ec92668
- removed unused functionality from CCreatureAnimation - simplified postioning of units in battle, should fix remaining issues with unit positioning - fixed unit tests compilation
11 lines
301 B
C++
11 lines
301 B
C++
// Creates the precompiled header
|
|
#include "StdInc.h"
|
|
|
|
#ifndef _MSC_VER
|
|
// Should be defined only once, before #include of unit test header
|
|
#define BOOST_TEST_MODULE VcmiTest
|
|
#include <boost/test/unit_test.hpp>
|
|
#include "CVcmiTestConfig.h"
|
|
BOOST_GLOBAL_FIXTURE(CVcmiTestConfig);
|
|
#endif
|