mirror of
				https://github.com/vcmi/vcmi.git
				synced 2025-10-31 00:07:39 +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
 | |
| 
 | |
| 
 |