mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-19 06:43:58 -07:00
27 lines
630 B
C
27 lines
630 B
C
|
|
/**
|
||
|
|
* =========================================================================
|
||
|
|
* File : boost_filesystem.h
|
||
|
|
* Project : 0 A.D.
|
||
|
|
* Description : bring in Boost filesystem library
|
||
|
|
* =========================================================================
|
||
|
|
*/
|
||
|
|
|
||
|
|
// license: GPL; see lib/license.txt
|
||
|
|
|
||
|
|
#ifndef INCLUDED_BOOST_FILESYSTEM
|
||
|
|
#define INCLUDED_BOOST_FILESYSTEM
|
||
|
|
|
||
|
|
// not W4-clean
|
||
|
|
#if MSC_VERSION
|
||
|
|
# pragma warning(push, 3)
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#include "boost/filesystem.hpp"
|
||
|
|
namespace fs = boost::filesystem;
|
||
|
|
|
||
|
|
#if MSC_VERSION
|
||
|
|
# pragma warning(pop)
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif // #ifndef INCLUDED_BOOST_FILESYSTEM
|