Compilation on Windows platform.

This commit is contained in:
rnv 2014-04-01 13:28:48 +04:00
parent 683b9e264c
commit 9acd4347a6
5 changed files with 15 additions and 9 deletions

View File

@ -45,6 +45,7 @@ SET(_link_LIBRARIES
${KERNEL_SALOMEBasics}
MeshDriver
SMDS
SMESHUtils
)
SET(_link_LIBRARIES_bin

View File

@ -22,17 +22,17 @@
#include "DriverSTL_R_SMDS_Mesh.h"
#include <Basics_Utils.hxx>
#include <gp_Pnt.hxx>
#include <NCollection_DataMap.hxx>
#include <Standard_NoMoreObject.hxx>
#include "SMDS_Mesh.hxx"
#include "SMDS_MeshElement.hxx"
#include "SMDS_MeshNode.hxx"
#include "SMESH_File.hxx"
#include <gp_Pnt.hxx>
#include <Basics_Utils.hxx>
#include <NCollection_DataMap.hxx>
#include <Standard_NoMoreObject.hxx>
namespace
{
struct Hasher

View File

@ -22,6 +22,12 @@
#include "DriverSTL_W_SMDS_Mesh.h"
#ifdef WIN32
#define NOMINMAX
#endif
#include <Basics_Utils.hxx>
#include "SMDS_FaceOfNodes.hxx"
#include "SMDS_IteratorOnIterators.hxx"
#include "SMDS_Mesh.hxx"
@ -32,8 +38,6 @@
#include "SMESH_File.hxx"
#include "SMESH_TypeDefs.hxx"
#include <Basics_Utils.hxx>
//#include "utilities.h"
#include <limits>

View File

@ -42,6 +42,7 @@ SET(_link_LIBRARIES
${CAS_TKG3d}
${CAS_TKGeomBase}
${CAS_TKGeomAlgo}
${Boost_LIBRARIES}
SMESHDS
)

View File

@ -171,7 +171,7 @@ long SMESH_File::size()
if ( _size >= 0 ) return _size; // size of an open file
boost::system::error_code err;
uintmax_t size = boofs::file_size( _name, err );
boost::uintmax_t size = boofs::file_size( _name, err );
_error = err.message();
return err ? -1 : (long) size;