mirror of
https://github.com/vcmi/vcmi.git
synced 2025-07-05 00:49:09 +02:00
11 lines
299 B
C++
11 lines
299 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
|