mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
17 lines
307 B
C
17 lines
307 B
C
#pragma once
|
|
|
|
#include "../Global.h"
|
|
|
|
#if !defined(_MSC_VER) && !defined(__MINGW32__)
|
|
#define BOOST_TEST_DYN_LINK
|
|
#endif
|
|
|
|
#ifdef _MSC_VER
|
|
#define BOOST_TEST_MODULE VcmiTest
|
|
#include <boost/test/unit_test.hpp>
|
|
#include "CVcmiTestConfig.h"
|
|
BOOST_GLOBAL_FIXTURE(CVcmiTestConfig);
|
|
#endif
|
|
|
|
|